CString转int:非Unicode环境
CString str("1234");
char *ch = str.GetBuffer(str.GetLength());
int num = atoi(ch);
str.ReleaseBuffer();
int转CString:非Unicode环境
CString str;
int num = 1234;
str.Format("%d",num);
不建议使用(LPSTR)(LPCTSTR)这样的转换,不安全,错误率高。

 

相关文章: