CString.Format报错
浅色夏沫 2013-11-05 09:06:07 写了一个函数
void funcation(){
......
......
int nVal=readUL(&file,nDataEndian,FALSE);
Info.Format("0002,0000 File Meta Elements Group Length: %d\r\n",nVal);
......
......
}
函数每次执行完Info.Format后就不再往下执行,而是跳到函数第一行又开始执行,一直循环,加了_T 后直接就中断报错了,产生这个问题的原因可能是什么?