来源:https://yq.aliyun.com/articles/520083
CString d;
d.Format(_T("%d"),c);//整型转字符串
AfxMessageBox(d);
int e = _ttoi(_T("123"));//字符串转整型
来源:https://yq.aliyun.com/articles/520083
CString d;
d.Format(_T("%d"),c);//整型转字符串
AfxMessageBox(d);
int e = _ttoi(_T("123"));//字符串转整型