如何在C ++中将双精度型转换为字符串?
可以使用std::to_string在C++中将双精度型转换为字符串。所需的参数是双精度值,并返回一个字符串对象,该对象包含双精度值作为字符序列。
给出了一个用C++进行演示的程序,如下所示。
示例
#include <iostream> #include <string.h> using namespace std; int main() { double d = 238649.21316934; string s = to_string(d); cout << "Conversion of double to string: " << s; return 0; }
输出结果
上面程序的输出如下。
Conversion of double to string: 238649.213169
现在让我们了解上面的程序。
使用值238649.21316934初始化双精度类型的变量d。使用to_string将此双精度值转换为字符串。最后显示出来。显示此代码段如下。
double d = 238649.21316934; string s = to_string(d); cout << "Conversion of double to string: " << s;