vs2013 mfc Cstring转int、int转CstringCString str = _T(“123”);int i = _ttoi(str);===============int i = 123;CString str ;str.Format(_T(“%d”), i);