CString转int

int转CString就不细说了,使用format即可,

这里简单介绍下CString转int的一种简便方法

 1 CString strNum("100");
 2 
 3 int num;
 4  
 5 //ANSI
 6 
 7 num = atoi(strNum); 
 8 num = _ttoi(strNum);
 9 
10   
11 //UNICODE 
12 num = atoi(CT2A(strNum.Getbuff())); 
13 num = _ttoi(strNum);

总结:

使用 _ttoi 可以适用于 ANSI和UNICODE两种版本。

 

转自:

https://blog.csdn.net/myruo/article/details/81505405

你可能感兴趣的:(CString转int)