std::money_get (3) - Linux Manuals
std::money_get: std::money_get
Command to display std::money_get
manual in Linux: $ man 3 std::money_get
NAME
std::money_get - std::money_get
Synopsis
Defined in header <locale>
template<
class CharT,
class InputIt = std::istreambuf_iterator<CharT>
> class money_get;
Class template std::money_get encapsulates the rules for parsing monetary values from character streams. The standard I/O manipulator std::get_money uses the std::money_get facet of the I/O stream's locale.
std-money get-inheritance.svg
Inheritance diagram
Type requirements
-
InputIt must meet the requirements of LegacyInputIterator.
Specializations
Two standalone (locale-independent) full specializations and two partial specializations are provided by the standard library:
Defined in header <locale>
std::money_get<char> parses narrow string representations of monetary values
std::money_get<wchar_t> parses wide string representations of monetary values
std::money_get<char, InputIt> parses narrow string representations of monetary values using custom input iterator
std::money_get<wchar_t, InputIt> parses wide string representations of monetary values using custom input 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 InputIt
Member functions
constructs a new money_get facet
constructor (public member function)
destructs a money_get facet
destructor (protected member function)
invokes do_get
get (public member function)
Protected member functions
do_get parses a monetary value from an input 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 <sstream>
#include <locale>
#include <iomanip>
#include <iterator>
int main()
{
std::string str = "$1.11 $2.22 $3.33";
std::cout << std::fixed << std::setprecision(2);
std::cout << '"' << str << "\" parsed with the I/O manipulator: ";
std::istringstream s1(str);
s1.imbue(std::locale("en_US.UTF-8"));
long double val;
while(s1 >> std::get_money(val))
std::cout << val/100 << ' ';
std::cout << '\n';
str = "USD 1,234.56";
std::cout << '"' << str << "\" parsed with the facet directly: ";
std::istringstream s2(str);
s2.imbue(std::locale("en_US.UTF-8"));
auto& f = std::use_facet<std::money_get<char>>(s2.getloc());
std::ios_base::iostate err;
std::istreambuf_iterator<char> beg(s2), end;
f.get(beg, end, true, s2, err, val);
std::cout << val/100 << '\n';
}
Output:
"$1.11 $2.22 $3.33" parsed with the I/O manipulator: 1.11 2.22 3.33
"USD 1,234.56" parsed with the facet directly: 1234.56
See also
defines monetary formatting parameters used by std::money_get and std::money_put
moneypunct (class template)
formats a monetary value for output as a character sequence
money_put (class template)
get_money parses a monetary value
(function template)
(C++11)
Pages related to 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::money_base (3) - std::money_base
- std::money_put (3) - 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::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