double转字符串 cpp代码
时间: 2023-07-09 09:30:26 浏览: 48
C++ 整型与字符串的互转方式
可以使用`std::to_string()`函数将double类型转换为字符串类型,示例代码如下:
```cpp
#include <iostream>
#include <string>
int main() {
double d = 3.1415926;
std::string str = std::to_string(d);
std::cout << str << std::endl;
return 0;
}
```
输出结果为:`3.141593`
阅读全文