Pytania oznaczone «stringstream»

86
resetowanie stringstream

Jak „zresetować” stan stringstream do tego, jaki był, kiedy go utworzyłem? int firstValue = 1; int secondValue = 2; std::wstringstream ss; ss << "Hello: " << firstValue; std::wstring firstText(ss.str()); //print the value of firstText here //How do I "reset" the stringstream...