Preguntas etiquetadas con stringstream

86
restableciendo una secuencia de cadenas

¿Cómo "restablezco" el estado de un stringstream al que tenía cuando lo creé? 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...