最佳答案
ostringstream s; s << "123"; cout << s.str().c_str() << endl; // how to clear ostringstream here? s << "456"; cout << s.str().c_str() << endl;
产出为:
123 123456
I need:
123 456
如何重置 ostringstream 以获得所需的输出?