在C++中,可以使用標準庫中的std::to_string()
函數來將數字轉換為字符串。示例如下:
#include <iostream>
#include <string>
int main() {
int num = 12345;
std::string str = std::to_string(num);
std::cout << "String representation of the number is: " << str << std::endl;
return 0;
}
以上代碼將整數12345
轉換為字符串,并輸出結果。您也可以使用std::to_string()
函數來將其他類型的數字(如double
、float
等)轉換為字符串。