iter_type put( iter_type out, bool intl, std::ios_base& f,
virtual iter_type do_put( iter_type out, bool intl, std::ios_base& str,
Formats monetary value and writes the result to output stream.
1,2) Public member functions, call the member function do_put
of the most derived class.
The numeric arguments
unitsis converted to a wide character string as if by
ct.widen(buf1, buf1 + std::sprintf(buf1, "%.0Lf", units), buf2), where
ctis the
std::ctypefacet imbued in
str.getloc()and
buf1and
buf2are sufficiently large character buffers. The resulting character string
buf2is processed, formatted, and output to
outas desribed below.
4)From the string argument
digits, only the optional leading minus sign (as determined by comparing to
ct.widen('-'), where
ctis the
std::ctypefacet imbued in
str.getloc()) and the immediately following digit characters (as classified by
ct) are taken as the character sequence to be processed, formatted, and output to
outas described below.
Given the character sequence from the previous steps, if the first character equals ct.widen('-'), calls mp.neg_format() to obtain the formatting pattern, otherwise calls mp.pos_format(), where mp is the std::moneypunct<CharT, intl> facet imbued in str.getloc().
Thousands separator and decimal point characters are inserted as required by mp.grouping(), mp.frac_digits(), mp.decimal_point(), and mp.thousands_sep(), and the resulting string is placed in the output sequence where value appears in the formatting pattern.
If str.flags() & str.showbase is non-zero (the std::showbase manipulator was used), then the currency symbol or string is generated by calling mp.curr_symbol() and placed in the output sequence where symbol appears in the formatting pattern.
If mp.positive_sign() (in case positive format pattern is used) or mp.negative_sign() (in case negative format pattern is used) returns a string with more than one character, the first character returned is placed in the output sequence where sign appears in the formatting pattern, and the rest of the characters are placed after all other characters, for example, formatting pattern {sign, value, space, symbol} with units 123 and negative_sign of "-" may result in "-1.23 â¬", while negative_sign of "()" would generate "(1.23 â¬)".
If the number of characters generated for the specified format is less than the value returned by str.width(), then copies of fill are inserted to bring the total length of the output sequence to exactly str.width(), as follows:
none
or space
appears in the formatting pattern.In the end, calls str.width(0) to cancel the effects of any std::setw.
[edit] Return valueAn iterator pointing immediately after the last character produced.
[edit] NotesThe currency units are assumed to be the smallest non-fractional units of the currency: cents in the U.S, yen in Japan.
[edit] Example#include <iomanip> #include <iostream> #include <locale> struct my_punct : std::moneypunct_byname<char, false> { my_punct(const char* name) : moneypunct_byname(name) {} string_type do_negative_sign() const { return "()"; } }; int main() { std::locale loc("ru_RU.utf8"); std::cout.imbue(loc); long double units = -123.45; std::cout << "In Russian locale, " << units << " prints as " << std::showbase; // note, the following is equivalent to simply std::put_money(units) std::use_facet<std::money_put<char>>(loc).put( {std::cout}, false, std::cout, std::cout.fill(), units); std::cout << '\n'; std::cout.imbue(std::locale(std::cout.getloc(), new my_punct("ru_RU.utf8"))); std::cout << "With negative_sign set to \"()\", it prints as "; std::use_facet<std::money_put<char>>(loc).put( {std::cout}, false, std::cout, std::cout.fill(), units); std::cout << '\n'; }
Output:
In Russian locale, -123,45 prints as -1.23 ÑÑб With negative_sign set to "()", it prints as (1.23 ÑÑб)[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR Applied to Behavior as published Correct behavior LWG 328 C++98 the format string used for std::sprintf was "%.01f" corrected to "%.0Lf" [edit] See alsoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4