c string转double
时间: 2023-11-17 10:06:25 浏览: 96
c++ string转换double
4星 · 用户满意度95%
可以使用 stod 函数将 C++ 的 string 类型转换为 double 类型。示例代码如下:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "3.14";
double num = stod(str);
cout << num << endl; // 输出 3.14
return 0;
}
```
阅读全文