C++ 如何将整形数据按原内容转化成字符串
Posted 狱典司
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 如何将整形数据按原内容转化成字符串相关的知识,希望对你有一定的参考价值。
//直接封装成一个函数吧更方便直接copy代码
//注意需要头文件: #include <sstream>
string intToStr(int intAns){
stringstream s;
s << intAns;
string p = s.str();
const char* res = p.c_str();
return res;
// 其实返回值就是一个字符串
}
- 代码演示如下:
int i = 10086;
string str = intToStr(i);
cout<<i<<endl;
// 输出结果:10086
以上是关于C++ 如何将整形数据按原内容转化成字符串的主要内容,如果未能解决你的问题,请参考以下文章