CString str = _T("123");
int i = _ttoi(str);
===============
int i = 123;
CString str ;
str.Format(_T("%d"), i);
转载于:https://www.cnblogs.com/deerfig/p/7877639.html
CString str = _T("123");
int i = _ttoi(str);
===============
int i = 123;
CString str ;
str.Format(_T("%d"), i);
转载于:https://www.cnblogs.com/deerfig/p/7877639.html