CString转化问题

 char* str = "it is a test";
CString str1 = str; //方法一,直接赋值
CString str2;
str2.Format("%s",str);//方法二,利用format进行串的格式化

CString a;
int b = 0;
a.format("%d", b);

另:
就是 CString::Format(LPCSTR, param.....)

没有直接将int转为CString这样的函数,一个是普通的数值变量,一个是类,没有可能转的。Format函数是把数值以文本模式字符串输出到CString里的












posted @ 2015-11-04 15:35  zeus135  阅读(163)  评论(0编辑  收藏  举报