std::put_money
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <iomanip> 中定义
|
||
template< class MoneyT > /*unspecified*/ put_money( const MoneyT& mon, bool intl = false ); |
(C++11 起) | |
使用时,表达out << put_money(mon, intl),转换的货币价值
mon
std::money_put方面,目前的语言环境充满在out
指定的字符表示.原文:
When used in an expression out << put_money(mon, intl), converts the monetary value
mon
to its character representation as specified by the std::money_put facet of the locale currently imbued in out
.这个函数的作用格式化输出功能.
原文:
This function behaves as a formatted output function.
目录 |
[编辑] 参数
mon | - | 一种货币的价值,无论是long double或basic_string
原文: a monetary value, either long double or basic_string |
intl | - | 使用国际货币的字符串,如果true,使用货币符号,否则
原文: use international currency strings if true, use currency symbols otherwise |
[编辑] 返回值
返回
out
是,如果一个输出流的类型std::basic_ostream<CharT, Traits>的名称,然后表达out << put_money(mon, intl)的行为,如果下面的代码被执行对象的类型不明确原文:
Returns an object of unspecified type such that if
out
is the name of an output stream of type std::basic_ostream<CharT, Traits>, then the expression out << put_money(mon, intl) behaves as if the following code was executed:typedef std::ostreambuf_iterator<CharT, Traits> Iter;
typedef std::money_put<CharT, Iter> MoneyPut;
const MoneyPut& mp = std::use_facet<MoneyPut>(out.getloc());
const Iter end = mp.put(Iter(out.rdbuf()), intl, out, out.fill(), mon);
if (end.failed())
out.setstate(std::ios::badbit);
[编辑] 示例
#include <iostream> #include <iomanip> int main() { long double mon = 123.45; // or std::string mon = "123.45"; std::cout.imbue(std::locale("en_US.utf8")); std::cout << std::showbase << "en_US: " << std::put_money(mon) << " or " << std::put_money(mon, true) << '\n'; std::cout.imbue(std::locale("ru_RU.utf8")); std::cout << "ru_RU: " << std::put_money(mon) << " or " << std::put_money(mon, true) << '\n'; std::cout.imbue(std::locale("ja_JP.utf8")); 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
[编辑] 另请参阅
输出一个字符序列格式的货币价值 原文: formats a monetary value for output as a character sequence (类模板) | |
(C++11) |
解析货币值 (函数模板) |