double 转 string
时间: 2023-08-17 15:09:41 浏览: 78
double转换成string
4星 · 用户满意度95%
要将 double 类型的变量转换为 string 类型,可以使用以下方法:
1. 使用 to_string 函数:
```cpp
double num = 3.14;
std::string str = std::to_string(num);
```
2. 使用 stringstream 类:
```cpp
#include <sstream>
double num = 3.14;
std::stringstream ss;
ss << num;
std::string str = ss.str();
```
这两种方法都可以将 double 类型的变量转换为对应的 string 类型。使用哪种方法取决于个人偏好和具体情况。
阅读全文