std::to_string
是 C++11 标准库中的一个实用函数,它可以将数字类型(如 int、float、double 等)转换为字符串。这使得字符串操作变得更加简单。
下面是一些使用 std::to_string
的例子:
#include<iostream>
#include<string>
int main() {
int num = 42;
std::string str_num = std::to_string(num);
std::cout << "The integer is: "<< num<< std::endl;
std::cout << "The string representation of the integer is: "<< str_num<< std::endl;
double d = 3.14;
std::string str_d = std::to_string(d);
std::cout << "The double is: " << d << std::endl;
std::cout << "The string representation of the double is: "<< str_d<< std::endl;
return 0;
}
输出:
The integer is: 42
The string representation of the integer is: 42
The double is: 3.14
The string representation of the double is: 3.140000
请注意,对于浮点数,std::to_string
会将其转换为最接近的表示形式。在这种情况下,它会显示 6 位小数(包括尾随的零)。
std::to_string
可以让你更轻松地将数字与字符串组合,从而简化字符串操作。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。