标签:for sp c r c++ bs res d string
1.CString 转 int
CString strtemp = "100";
int intResult;
intResult= atoi(strtemp);
-----------------------------------------------------------------
2 int 转 CString
CString strtemp;
int i = 2334;
strtemp.Format("%d",i);
标签:for sp c r c++ bs res d string
原文地址:http://www.cnblogs.com/iack/p/4004836.html