CString to int:
如下:
CString str = "123";
int i;
i = atoi(str);
CString to float:
如下:
CString str="1.2";
float f;
f = atof(str);
int、float to CString:
如下:
int i = 15;
float f = 1.1;
CString stri="",strf="";
stri.Format("%d",i);
strf.Format("%.2f",f);