istringstream
istringstream is("hello world");
string s,str;
str = is.str() ; //str = hello world
is >> s; //s = hello
str = is.str() ; //str = hello world
string s,str;
str = is.str() ; //str = hello world
is >> s; //s = hello
str = is.str() ; //str = hello world
浙公网安备 33010602011771号