欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VC++ CString 与 int 类型转换

程序员文章站 2022-04-12 20:50:21
...

 

摘自:http://blog.csdn.net/a951084634/article/details/6961133

 

CString _temp = "100";

int _int;

_int = atoi(_temp);

===================================

===================================

CString str;   
        int i = 2334;   
        str.Format("%d",i);