Namespaces
Variants

std:: put_money

From cppreference.net
< cpp ‎ | io ‎ | manip
Definiert im Header <iomanip>
template < class MoneyT >
/*unspecified*/ put_money ( const MoneyT & mon, bool intl = false ) ;
(seit C++11)

Wenn in einem Ausdruck verwendet out << put_money ( mon, intl ) , konvertiert es den monetären Wert mon zu seiner Zeichendarstellung, wie durch das std::money_put Facette der Locale spezifiziert, die aktuell in out eingebettet ist.

Der Einfügevorgang in out << put_money ( mon, intl ) verhält sich wie eine FormattedOutputFunction .

Inhaltsverzeichnis

Parameter

mon - ein monetärer Wert, entweder long double oder std::basic_string
intl - verwende internationale Währungszeichen wenn true , andernfalls Währungssymbole verwenden

Rückgabewert

Ein Objekt eines nicht näher spezifizierten Typs, sodass

wobei die Funktion f definiert ist als:

template<class CharT, class Traits, class MoneyT>
void f(std::basic_ios<CharT, Traits>& str, const MoneyT& mon, bool intl)
{
    using Iter = std::ostreambuf_iterator<CharT, Traits>;
    using MoneyPut = std::money_put<CharT, Iter>;
    const MoneyPut& mp = std::use_facet<MoneyPut>(str.getloc());
    const Iter end = mp.put(Iter(str.rdbuf()), intl, str, str.fill(), mon);
    if (end.failed())
        str.setstate(std::ios_base::badbit);
}

Beispiel

#include <iomanip>
#include <iostream>
int main()
{
    long double mon = 123.45; // or std::string mon = "123.45";
    std::cout.imbue(std::locale("en_US.UTF-8"));
    std::cout << std::showbase
              << "en_US: " << std::put_money(mon)
              << " or " << std::put_money(mon, true) << '\n';
    std::cout.imbue(std::locale("ru_RU.UTF-8"));
    std::cout << "ru_RU: " << std::put_money(mon)
              << " or " << std::put_money(mon, true) << '\n';
    std::cout.imbue(std::locale("ja_JP.UTF-8"));
    std::cout << "ja_JP: " << std::put_money(mon)
              << " or " << std::put_money(mon, true) << '\n';
}

Mögliche Ausgabe:

en_US: $1.23 or USD  1.23
ru_RU: 1.23 руб or 1.23 RUB 
ja_JP: ¥123 or JPY  123

Siehe auch

formatiert einen monetären Wert für die Ausgabe als Zeichenfolge
(Klassentemplate)
(C++11)
analysiert einen monetären Wert
(Funktionstemplate)