MFC封裝的類型跟C++對比,個人感覺很不習慣,有時候轉個類型痛苦死了。特別是跟編碼有關時,搞的特別郁悶,可能現在對MFC還不太熟。
有時候天真的想想MFC的類型底下為什麼不帶類型轉換的方法,如果這樣,用著多爽,一個方法就搞定,就不用百度谷歌那麼多為什麼了。
1.CString 轉 int
[cpp]
CString k;
int i=_ttoi(k);
CString k;
int i=_ttoi(k);
2.int,char,string 轉 CString
[cpp]
CString ss;
int i;
string str;
char *ch;
ss.Format("%d,%s,%s",i,str.c_str(), ch);
CString ss;
int i;
string str;
char *ch;
ss.Format("%d,%s,%s",i,str.c_str(), ch);
3. CString轉string
[cpp] www.2cto.com
CString ss;
string strNowGroupInfo = CStringA(ss);
CString ss;
string strNowGroupInfo = CStringA(ss);
作者:wyz365889