std::num_put
From cppreference.com
Defined in header <locale>
|
||
template< class charT, class OutputIterator = std::ostreambuf_iterator<charT> |
||
Class std::num_put encapsulates the rules for formatting values of type bool, long, unsigned long, long long, unsigned long long, double, long double, void*, and of all types implicitly convertible to these (such as int or float), as strings. The standard formatting output operators (such as cout << n;) use the std::num_put facet of the I/O stream's locale to generate text representation of numbers.
Two specializations and two partial specializations are provided by the standard library and are implemented by all locale objects created in a C++ program:
Defined in header <locale>
| |
std::num_put<char> | creates narrow string representations of numbers |
std::num_put<wchar_t> | creates wide string representations of numbers |
std::num_put<char, OutputIterator> | creates narrow string representations of numbers using custom output iterator |
std::num_put<wchar_t, OutputIterator> | creates wide string representations of numbers using custom output iterator |
Contents |
[edit] Member types
Member type | Definition |
char_type | charT |
iter_type | OutputIterator |
[edit] Member objects
Member name | Type |
id (static) | std::locale::id |
[edit] Member functions
constructs a new num_put facet (public member function) | |
destructs a num_put facet (protected member function) | |
invokes do_put (public member function) |
[edit] Protected member functions
[virtual] |
formats a number and writes to output stream (virtual protected member function) |
[edit] Example
#include <iostream> #include <locale> #include <string> #include <iterator> int main() { double n = 1234567.89; std::cout.imbue(std::locale("de_DE")); std::cout << "Direct conversion to string:\n" << std::to_string(n) << '\n' << "Output using a german locale:\n" << std::fixed << n << '\n' << "Output using an american locale:\n"; // use the facet directly std::cout.imbue(std::locale("en_US.UTF-8")); auto& f = std::use_facet<std::num_put<char>>(std::cout.getloc()); f.put(std::ostreambuf_iterator<char>(std::cout), std::cout, ' ', n); std::cout << '\n'; }
Output:
Direct conversion to string: 1234567.890000 Output using a german locale: 1.234.567,890000 Output using an american locale: 1,234,567.890000
[edit] See also
defines numeric punctuation rules (class template) | |
parses numeric values from an input character sequence (class template) | |
(C++11) |
converts an integral or floating point value to string (function) |
(C++11) |
converts an integral or floating point value to wstring (function) |