Perguntas com a marcação «stringstream»

86
redefinindo um stringstream

Como faço para "redefinir" o estado de um stringstream para o que era quando eu o criei? 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...