std::moneypunct_byname
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <locale> 中定义
|
||
template< class charT, bool Intl = false > class moneypunct_byname : public std::moneypunct<charT, Intl>; |
||
std::moneypunct_byname是一个std::moneypunct方面,它封装在建设一个指定的区域货币格式的喜好.
原文:
std::moneypunct_byname is a std::moneypunct facet which encapsulates monetary formatting preferences of a locale specified at its construction.
两个专业所提供的标准库
原文:
Two specializations are provided by the standard library
在头文件
<locale> 中定义 | |
std::moneypunct_byname<char, Intl> | 窄字符的I / O区域设置特定的std::moneypunct方面
原文: locale-specific std::moneypunct facet for narrow character I/O |
std::moneypunct_byname<wchar_t, Intl> | 宽字符的I / O区域设置特定的std::moneypunct方面
原文: locale-specific std::moneypunct facet for wide character I/O |
目录 |
[编辑] 会员类型
会员类型
|
Definition |
pattern
|
std::money_base::pattern |
string_type
|
std::basic_string<charT> |
[编辑] 成员函数
构造一个新moneypunct_byname方面 原文: constructs a new moneypunct_byname facet (公共成员函数) | |
解构一个moneypunct_byname方面 原文: destructs a moneypunct_byname facet (受保护的成员函数) |
[编辑] 示例
此示例demonistrates如何应用不改变的区域设置的其余部分的情况下的另一种语言的货币格式规则.
原文:
This example demonistrates how to apply monetary formatting rules of another language without changing the rest of the locale.
#include <iostream> #include <iomanip> #include <locale> int main() { long double mon = 1234567; std::locale::global(std::locale("en_US.utf8")); std::wcout.imbue(std::locale()); std::wcout << L"american locale : " << std::showbase << std::put_money(mon) << '\n'; std::wcout.imbue(std::locale(std::wcout.getloc(), new std::moneypunct_byname<wchar_t>("ru_RU.utf8"))); std::wcout << L"american locale with russian moneypunct: " << std::put_money(mon) << '\n'; }
输出:
american locale : $12,345.67 american locale with russian moneypunct: 12 345.67 руб
[编辑] 另请参阅
定义货币格式std::money_get和std::money_put使用的参数 原文: defines monetary formatting parameters used by std::money_get and std::money_put (类模板) |