在C++中,可以使用std::to_string()
函数将数字转换为字符串。例如:
#include <iostream>
#include <string>
int main() {
int num = 123;
std::string str = std::to_string(num);
std::cout << "The number as a string is: " << str << std::endl;
return 0;
}
上面的代码中,将整数num
转换为字符串str
,然后输出转换后的字符串。