c++输入输出流stringstream进行输出时地用的技巧
从stringstream中解析对象的时候,是以空格和回车键为分隔符的
getline(cin,s);//当输入中间带有空格的整行信息后
stringstream ss;//注意从stringstream中解析对象的时候,是以空格和回车键为分隔符的
ss << s;
string t;
string sRGB, sD;
ss >> t;
cout<<t<<endl;
ss >> sRGB;
cout<<sRGB<<endl;
ss >> sD;
cout<<sD<<endl;
当输入的信息为 hello apple com
输出为:
hello
apple
com