在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
,然后輸出轉換后的字符串。