std::money_put (3) - Linux Manuals
std::money_put: std::money_put
Command to display std::money_put
manual in Linux: $ man 3 std::money_put
NAME
std::money_put - std::money_put
Synopsis
Defined in header <locale>
template<
class CharT,
class OutputIt = std::ostreambuf_iterator<CharT>
> class money_put;
Class std::money_put encapsulates the rules for formatting monetary values as strings. The standard I/O manipulator std::put_money uses the std::money_put facet of the I/O stream's locale.
std-money put-inheritance.svg
Inheritance diagram
Type requirements
-
OutputIt must meet the requirements of LegacyOutputIterator.
Specializations
Two standalone (locale-independent) full specializations and two partial specializations are provided by the standard library:
Defined in header <locale>
std::money_put<char> creates narrow string representations of monetary values
std::money_put<wchar_t> creates wide string representations of monetary values
std::money_put<char, OutputIt> creates narrow string representations of monetary values using custom output iterator
std::money_put<wchar_t, OutputIt> creates wide string representations of monetary values using custom output iterator
In addition, every locale object constructed in a C++ program implements its own (locale-specific) versions of these specializations.
Member types
Member type Definition
char_type CharT
string_type std::basic_string<CharT>
iter_type OutputIt
Member functions
constructs a new money_put facet
constructor (public member function)
destructs a money_put facet
destructor (protected member function)
invokes do_put
put (public member function)
Protected member functions
do_put formats a monetary value and writes to output stream
(virtual protected member function)
[virtual]
Member objects
id of the locale
static std::locale::id id (public member object)
Example
// Run this code
#include <iostream>
#include <locale>
#include <iomanip>
#include <iterator>
int main()
{
// using the IO manipulator
std::cout.imbue(std::locale("en_US.UTF-8"));
std::cout << "american locale: "
<< std::showbase << std::put_money(12345678.9)<< '\n';
// using the facet directly
std::cout.imbue(std::locale("de_DE.UTF-8"));
std::cout << "german locale: " ;
auto& f = std::use_facet<std::money_put<char>>(std::cout.getloc());
f.put({std::cout}, false, std::cout, std::cout.fill(), 12345678.9 );
std::cout << '\n';
}
Output:
american locale: $123,456.79
german locale: 123.456,79 €
See also
defines monetary formatting parameters used by std::money_get and std::money_put
moneypunct (class template)
parses and constructs a monetary value from an input character sequence
money_get (class template)
put_money formats and outputs a monetary value
(function template)
(C++11)
Pages related to std::money_put
- std::money_put<CharT,OutputIt>::money_put (3) - std::money_put<CharT,OutputIt>::money_put
- std::money_put<CharT,OutputIt>::put,do_put (3) - std::money_put<CharT,OutputIt>::put,do_put
- std::money_put<CharT,OutputIt>::~money_put (3) - std::money_put<CharT,OutputIt>::~money_put
- std::money_base (3) - std::money_base
- std::money_get (3) - std::money_get
- std::money_get<CharT,InputIt>::get,do_get (3) - std::money_get<CharT,InputIt>::get,do_get
- std::money_get<CharT,InputIt>::money_get (3) - std::money_get<CharT,InputIt>::money_get
- std::money_get<CharT,InputIt>::~money_get (3) - std::money_get<CharT,InputIt>::~money_get
- std::moneypunct (3) - std::moneypunct
- std::moneypunct<CharT,International>::curr_symbol,do_curr_symbol (3) - std::moneypunct<CharT,International>::curr_symbol,do_curr_symbol
- std::moneypunct<CharT,International>::decimal_point,do_decimal_point (3) - std::moneypunct<CharT,International>::decimal_point,do_decimal_point
- std::moneypunct<CharT,International>::frac_digits,do_frac_digits (3) - std::moneypunct<CharT,International>::frac_digits,do_frac_digits
- std::moneypunct<CharT,International>::grouping,do_grouping (3) - std::moneypunct<CharT,International>::grouping,do_grouping
- std::moneypunct<CharT,International>::moneypunct (3) - std::moneypunct<CharT,International>::moneypunct