std::moneypunct<CharT,International>::curr_symbol, do_curr_symbol
来自 cppreference.com
< cpp | locale | moneypunct
定义在头文件 <locale> 中 |
||
public: string_type curr_symbol() const; |
(1) | |
protected: virtual string_type do_curr_symbol() const; |
(2) | |
1) 公共成员函数,调用最派生类的成员函数
do_curr_symbol
。2) 返回此语言环境用作货币标识符的字符串。如果
International
(std::moneypunct
的第二个模板参数)为 false,则标识符通常是一个(宽)字符,例如 "¥" 或 "$"。如果 International
为 true,则标识符通常是一个包含三个字符的 ISO 4217 货币代码后跟一个空格的四字符字符串 ("JPY " 或 "USD ")。内容 |
[编辑] 返回值
类型为 string_type
的对象,其中包含货币符号或代码。
[编辑] 示例
运行此代码
#include <iostream> #include <locale> void show_ccy(const char* locname) { std::locale loc(locname); std::cout << locname << " currency symbol is " << std::use_facet<std::moneypunct<char, true>>(loc).curr_symbol() << "or " << std::use_facet<std::moneypunct<char>>(loc).curr_symbol() << " for short\n"; } int main() { show_ccy("en_US.utf8"); show_ccy("ja_JP.utf8"); show_ccy("sv_SE.utf8"); show_ccy("ru_RU.utf8"); show_ccy("vi_VN.utf8"); }
输出
en_US.utf8 currency symbol is USD or $ for short ja_JP.utf8 currency symbol is JPY or ¥ for short sv_SE.utf8 currency symbol is SEK or kr for short ru_RU.utf8 currency symbol is RUB or руб for short vi_VN.utf8 currency symbol is VND or ₫ for short
[编辑] 缺陷报告
以下更改行为的缺陷报告已追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 666 | C++98 | 标识符字符串的长度要求为 4,如果 International 为 true |
不需要 |
[编辑] 另请参阅
[virtual] |
提供货币值的格式模式 (virtual protected member function) |