c++数字转换成字符串函数
时间: 2024-10-10 19:15:23 浏览: 42
c++中数字与字符串之间的转换方法(推荐)
在C++中,将数字转换为字符串通常使用`std::to_string()`函数,它属于 `<string>`头文件的一部分。这个函数可以接受各种整型、浮点数类型的数值,并返回对应的字符串表示形式。例如:
```cpp
#include <iostream>
#include <string>
int main() {
int num = 42;
std::string strNum = std::to_string(num);
std::cout << "Number: " << num << ", String representation: " << strNum << std::endl;
double decimal = 3.14159;
std::string strDecimal = std::to_string(decimal);
std::cout << "Decimal number: " << decimal << ", String representation: " << strDecimal << std::endl;
return 0;
}
```
当你运行这段代码,会看到相应的数字被转换成了字符串输出。
阅读全文