Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
std::ostringstream is an STL output stream interface for std::string manipulation.
In the example below, int and std::string are appended to a std::ostringstream, before the std::ostringstream is finally converted to std::string.
#include <iostream> |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.