码迷,mamicode.com
首页 > 编程语言 > 详细

[转载]C++ CString与int 互转

时间:2014-10-03 12:38:54      阅读:235      评论:0      收藏:0      [点我收藏+]

标签: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); 

[转载]C++ CString与int 互转

标签:for   sp   c   r   c++   bs   res   d   string   

原文地址:http://www.cnblogs.com/iack/p/4004836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!