C++的输入输出分为三种:
(1)基于控制台的I/O
(2)基于文件的I/O
(3)基于字符串的I/O
其中基于字符串io的ostringstream可以这么用
ostringstream s_a;
s_a<<"my name is wsw";
string s_name = s_a.str();