在C++中,可以使用std::to_string()
函数将int
类型转换为std::string
类型。下面是一个示例:
#include <iostream>
#include <string>
int main() {
int num = 123;
std::string str = std::to_string(num);
std::cout << str << std::endl;
return 0;
}
输出:
123
std::to_string()
函数接受一个整数作为参数,并返回相应的字符串表示。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: C++的STL标准库怎么使用