stoi函数: 将string类型转换成int类型的函数

stod函数: 将string类型转换成double类型的函数

atof函数: 将string类型转换成double类型的函数

stoi – C++ Reference (cplusplus.com)

stod – C++ Reference (cplusplus.com)

atof – C++ Reference (cplusplus.com)

两个函数的共同特性:

1.会自动截取所需要的类型数值

2.遇到非数字,截取停止,即使后面有数字也不会继续读取了

atof函数的个性:

1.未找到时返回值为0

2.stod函数使用对象为string类型,而atof函数为const char*

stoi/stod函数适应性较好,可以读取string类型的字符串

c++中字符串转浮点数stod vs atof_guotianqing的博客-CSDN博客_c++ 字符串转浮点数

这篇博文写的清晰详细,非常值的一看!

实操的测试代码:

#include<iostream>
using namespace std;
#include<string>
int main() {string str1 = "123.4342eeee";string str2 = ".11";string str3 = "aaaaaa";//const char str*="aaaaa";//char str*="aaaaa";      //这句会报错,因为这种赋值方式不可以使用在char*上,只可以在const char*,已知,数组即为const类型变量char str4[10] = "aaaaaa";//头文件: #include<string>int a = stoi(str1);cout << "a = " << a << endl;double b = stod(str1);cout << "b = " << b << endl;//如果字符串中,数字在字符(字母和符号)后面,那么调用stoi函数会引发异常//本次测试采用.11作为测试字符串 str2//int c = stoi(str2);double d = stod(str2);//cout << "c = " << c << endl;cout << "d = " << d << endl;/*int e = stod(str3);cout << "e = " << e << endl;double f = stod(str3);cout << "f = " << f << endl;*/double g = atof(str4);cout << "g = " << g << endl;
}

字符串中字符在数字前,将发生的错误:

stod/stoi 函数基本用法及与atof函数的对比-编程知识网

 将 int c = stoi(str2); 等行注释掉,此时运行输出: 

stod/stoi 函数基本用法及与atof函数的对比-编程知识网

可以发现一个新情况:

字符串为.11 时,stod会自动补足0,不会认为其为先遇到字符的情况

最后,如果整个字符串数组都没有数字,也会进入异常(stoi/stod函数与atof函数都会这样)

stod/stoi 函数基本用法及与atof函数的对比-编程知识网

而atof函数如果未找到不会进入异常,而是返回数值0

stod/stoi 函数基本用法及与atof函数的对比-编程知识网