怎么将CString类型的数字字符串转化浮点型?
发布网友
发布时间:2023-09-20 17:16
我来回答
共2个回答
热心网友
时间:2023-09-20 19:50
如果是VC6用 atof
如果是VS2005或VS2008用 _tstof (单字符集和UNICODE编码都可以用)
CString str = _T("123.456");
//VS2005或VS2008用
double a = _tstof(str);
//VC6用
double b = atof(str);
热心网友
时间:2023-09-20 19:50
使用函数
double atof( const char *string );
比如char *s; double m;
m=atof(s );//把s数字字符串转换为double
这是在#include<math.h>的