Difference between revisions of "cpp/string/basic string/to string"
From cppreference.com
< cpp | string | basic string
(→Notes: notes for pre-C++26 implementation strategy for integer overloads) |
(→Example: heads up on C++26 changes (example is now non-deterministic)) |
||
Line 76: | Line 76: | ||
{{example | {{example | ||
|code= | |code= | ||
+ | #include <cstdio> | ||
+ | #include <format> | ||
#include <iostream> | #include <iostream> | ||
#include <string> | #include <string> | ||
+ | |||
+ | const char* const to_string_label = | ||
+ | #if __cpp_lib_to_string >= 202306L | ||
+ | " (post C++26)"; | ||
+ | #else | ||
+ | " (pre C++26)"; | ||
+ | #endif | ||
int main() | int main() | ||
{ | { | ||
for (const double f : {23.43, 1e-9, 1e40, 1e-40, 123456789.0}) | for (const double f : {23.43, 1e-9, 1e40, 1e-40, 123456789.0}) | ||
− | std::cout << " | + | { |
− | + | std::cout << "to_string: " << std::to_string(f) << to_string_label << '\n'; | |
+ | |||
+ | // Pre C++26 output | ||
+ | std::printf("printf: %f\n", f); | ||
+ | |||
+ | // Post C++26 output | ||
+ | std::cout << std::format("format: {}\n", f); | ||
+ | |||
+ | std::cout << "std::cout: " << f << "\n\n"; | ||
+ | } | ||
} | } | ||
+ | |p=true | ||
|output= | |output= | ||
std::cout: 23.43 | std::cout: 23.43 |
Revision as of 02:23, 16 May 2024
Defined in header <string>
|
||
std::string to_string( int value ); |
(1) | (since C++11) |
std::string to_string( long value ); |
(2) | (since C++11) |
std::string to_string( long long value ); |
(3) | (since C++11) |
std::string to_string( unsigned value ); |
(4) | (since C++11) |
std::string to_string( unsigned long value ); |
(5) | (since C++11) |
std::string to_string( unsigned long long value ); |
(6) | (since C++11) |
std::string to_string( float value ); |
(7) | (since C++11) |
std::string to_string( double value ); |
(8) | (since C++11) |
std::string to_string( long double value ); |
(9) | (since C++11) |
Converts a numeric value to std::string.
Let 1) Converts a signed integer to a string as if by std::sprintf(buf, "%d", value).
2) Converts a signed integer to a string as if by std::sprintf(buf, "%ld", value).
3) Converts a signed integer to a string as if by std::sprintf(buf, "%lld", value).
4) Converts an unsigned integer to a string as if by std::sprintf(buf, "%u", value).
5) Converts an unsigned integer to a string as if by std::sprintf(buf, "%lu", value).
6) Converts an unsigned integer to a string as if by std::sprintf(buf, "%llu", value).
7,8) Converts a floating point value to a string as if by std::sprintf(buf, "%f", value).
9) Converts a floating point value to a string as if by std::sprintf(buf, "%Lf", value).
|
(until C++26) |
1-9) Converts a numeric value to a string as if by std::format("{}", value).
|
(since C++26) |
Contents |
Parameters
value | - | a numeric value to convert |
Return value
A string holding the converted value.
Exceptions
May throw std::bad_alloc from the std::string constructor.
Notes
- With floating point types
std::to_string
may yield unexpected results as the number of significant digits in the returned string can be zero, see the example. - The return value may differ significantly from what
std::cout
prints by default, see the example.
|
(until C++26) |
C++17 provides std::to_chars as a higher-performance locale-independent alternative.
Feature-test macro | Value | Std | Feature |
---|---|---|---|
__cpp_lib_to_string |
202306L | (C++26) | Redefining std::to_string in terms of std::format
|
Example
Run this code
#include <cstdio> #include <format> #include <iostream> #include <string> const char* const to_string_label = #if __cpp_lib_to_string >= 202306L " (post C++26)"; #else " (pre C++26)"; #endif int main() { for (const double f : {23.43, 1e-9, 1e40, 1e-40, 123456789.0}) { std::cout << "to_string: " << std::to_string(f) << to_string_label << '\n'; // Pre C++26 output std::printf("printf: %f\n", f); // Post C++26 output std::cout << std::format("format: {}\n", f); std::cout << "std::cout: " << f << "\n\n"; } }
Possible output:
std::cout: 23.43 to_string: 23.430000 std::cout: 1e-09 to_string: 0.000000 std::cout: 1e+40 to_string: 10000000000000000303786028427003666890752.000000 std::cout: 1e-40 to_string: 0.000000 std::cout: 1.23457e+08 to_string: 123456789.000000
See also
(C++11) |
converts an integral or floating-point value to wstring (function) |
(C++11)(C++11) |
converts a string to an unsigned integer (function) |
(C++11)(C++11)(C++11) |
converts a string to a signed integer (function) |
(C++11)(C++11)(C++11) |
converts a string to a floating point value (function) |
(C++17) |
converts an integer or floating-point value to a character sequence (function) |