刘华世的官方博客

CString 转 int

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)这样的转换,不安全,错误率高。

 

posted @ 2012-12-11 21:11  pythonschool  阅读(332)  评论(0编辑  收藏  举报
刘华世的官方博客