C++ vector<int> 转 string

直接上干货

#include 
#include 
#include 
#include 
#include 

using namespace std;

int main()
{

	vector<int> vec = {1,2,3,4};
	stringstream ss;
	string str;
	copy(vec.begin(), vec.end(), ostream_iterator<int>(ss, ""));
	str = ss.str();
	cout << str << endl;   //  1234

}

有其他更好的办法欢迎留言,一起进步,谢谢。

你可能感兴趣的:(C++,vector,string)