有求必应

导航

CString int转换

1.CString 转 int   
   
CString strtemp = "100";  
  
int  intResult;  
  
intResult= atoi(strtemp);  
  
-----------------------------------------------------------------  
  
2 int 转 CString   
  
   
CString strtemp;  
  
int i = 2334;     
strtemp.Format("%d",i); 

posted on 2017-07-28 10:27  名侦探江户川  阅读(198)  评论(0编辑  收藏  举报