Inhaltsverzeichnis

C++

Zahlen (double, int) in String umwandlen

Standard C++:

std::ostringstream strs;
strs << number;
std::string str = strs.str();

Boost:

std::string str = boost::lexical_cast<std::string>(dbl);

C++11:

std::string str = std::to_string(dbl); //if your compiler supports it yet

Die Variante mit Boost ist schneller als die Standard C++ Version.

Unterseiten