std::put_money
来自 cppreference.com
定义在头文件 <iomanip> 中 |
||
template< class MoneyT > /*未指定*/ put_money( const MoneyT& mon, bool intl = false ); |
(自 C++11 起) | |
当在表达式 out << put_money(mon, intl) 中使用时,将货币值 mon 转换为其字符表示形式,如 std::money_put 面向当前在 out 中注入的区域设置的方面所指定。
在 out << put_money(mon, intl) 中的插入操作的行为类似于 FormattedOutputFunction.
内容 |
[编辑] 参数
mon | - | 货币值,可以是 long double 或 std::basic_string |
intl | - | 如果 true,则使用国际货币字符串,否则使用货币符号 |
[编辑] 返回值
一个未指定类型的对象,使得
- 如果 out 是类型为 std::basic_ostream<CharT, Traits> 的对象,则表达式 out << put_money(mon, intl)
- 具有类型 std::basic_ostream<CharT, Traits>&
- 具有值 out
- 的行为类似于一个 FormattedOutputFunction,它调用 f(out, mon, intl)
其中函数 f 定义为
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); }
[编辑] 示例
运行这段代码
#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'; }
可能的输出
en_US: $1.23 or USD 1.23 ru_RU: 1.23 руб or 1.23 RUB ja_JP: ¥123 or JPY 123
[编辑] 另请参阅
将货币值格式化为输出的字符序列 (类模板) | |
(C++11) |
解析货币值 (函数模板) |