c++string类型转换成double
时间: 2023-04-25 13:02:32 浏览: 3077
c++ string转换double
4星 · 用户满意度95%
可以使用stod函数将C++的string类型转换成double类型。
示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "3.1415926";
double d = stod(str);
cout << d << endl;
return ;
}
```
输出结果:
```
3.14159
```
阅读全文