1,字符中CString转int int i ; CString cs; cs = "1000"; i = _tstoi(cs); ' 1,int转CString int i = 1000; CString cs; cs.Format(_T("%d"), i);