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++ 如何将整形数据按原内容转化成字符串的主要内容,如果未能解决你的问题,请参考以下文章

c++中如何将string中数字转换成整型的

高手请进!如何把整形数据转换为字符串(C语言)?

C# 中 将IP字符串转换为整型

如何用C++将数字“1”转换成字符“1”?

怎样用c将无符号整型转化为字符型

如何把对象转化为字符串 php