MFC CString 和int相互转化

CString str = _T("123");
int i = _ttoi(str);
===============
int i = 123;
CString str ;
str.Format(_T("%d"), i);
posted @ 2017-11-22 16:08  123默小白  阅读(306)  评论(0编辑  收藏  举报