c++实现各类型值转换为string

c++ stl中的stringstream可以方便的将各种类型值转换成string。

头文件 #include <sstream>

样例:

#include <iostream>
#include <sstream>

using namespace std;

int main()
{
	int a = 10;
	long long b = 11;
	string c = "12";
	double d = 0.13;
	short e = 14;
	char f = 'o';
	stringstream s;
	s<<a<<' '<<b<<' '<<c<<' '<<d<<' '<<e<<' '<<f;
	cout<<s.str()<<endl;
	return 0;
}


posted @ 2018-04-15 16:36  Assassin_poi君  阅读(409)  评论(0编辑  收藏  举报