3、 将字符串转换为其他的数据类型
3.1 “字符串”转换为“短整型”
字符串转换为短整型,系统提供了函数atoi()实现这个功能,其函数原型如下:
int atoi(const char *string);
其中,参数const char *string为要转换的字符串,返回值为转换的结果。
3.2 “字符串”转换为“长整型”
函数原型:
long atol(const char *string)
3.3 字符串转换为双精度类型
函数原型:
double atof(const char* string)
如果还想获得更多关于《Visual C++代码参考与技巧大全》的内容,可点击下面网址,
http://www.cppblog.com/kangnixi/archive/2010/01/13/105591.html