int与CString互相转化时间:2024-04-17 14:03:31 int num; CString str; //int转CString num=; str.Format(_T("%d"),num); //CString转int str=L""; num=_ttoi(str);