C++ 如何把一个char a[]数组转换成string?
例如chara[]={'a','b','','d','e'};转换成stringstr1="ab";和stringstr2="de";...
例如 char a[]={'a','b',' ','d','e'} ;
转换成 string str1="ab";
和 string str2="de"; 展开
转换成 string str1="ab";
和 string str2="de"; 展开
2个回答
展开全部
我给你的a后边加了一个‘\0’,要不然str2结尾是斗昌乱码。如消唯果你不这么做,就一个一个的输入数组元素
s << a[0] << a[1] << ... << '\0'
#include <iostream>
#include <strstream>
#include <string>
using namespace std;
int main()
{
char a[]={'a', 'b', ' ', 'd', '空桥扒e', '\0'} ;
strstream s;
s << a;
string str1, str2;
s >> str1 >> str2;
cout << str1 << endl;
cout << str2 << endl;
system("pause");
}
s << a[0] << a[1] << ... << '\0'
#include <iostream>
#include <strstream>
#include <string>
using namespace std;
int main()
{
char a[]={'a', 'b', ' ', 'd', '空桥扒e', '\0'} ;
strstream s;
s << a;
string str1, str2;
s >> str1 >> str2;
cout << str1 << endl;
cout << str2 << endl;
system("pause");
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询