本地化库
本地环境设施包含字符分类和字符串校对、数值、货币及日期/时间格式化和分析,以及消息取得的国际化支持。本地环境设置控制流 I/O 、正则表达式库和 C++ 标准库的其他组件的行为。
平面类别
定义 std::money_get 与 std::money_put 所用的货币格式解析器的参数
std::moneypunct
template< class CharT, bool International = false > |
平面 std::moneypunct 封装货币值格式化偏好。流 I/O 操纵符 std::get_money 和 std::put_money 通过 std::money_get 和 std::money_put 用 std::moneypunct 分析货币值输入及格式化货币值输出。
继承图
标准库提供四个孤立(独立于本地环境)的特化:
定义于头文件 | |
std::moneypunct<char> | 提供 "C" 本地环境偏好的等价版本 |
std::moneypunct<wchar_t> | 提供 "C" 本地环境偏好的宽字符等价版本 |
std::moneypunct<char, true> | 提供 "C" 本地环境偏好的等价版本,带国际通货符号 |
std::moneypunct<wchar_t, true> | 提供 "C" 本地环境偏好的宽字符等价版本,带国际通货符号 |
另外, C++ 程序中构造的每个 locale 对象都实装这些特化的其自身(本地环境限定)版本。
成员类型
成员类型 | 定义 |
char_type | CharT |
string_type | std::basic_string<CharT> |
提供指示正或负值的字符串
std::moneypunct<CharT,International>::positive_sign,
std::moneypunct<CharT,International>::do_positive_sign,
std::moneypunct<CharT,International>::negative_sign,
std::moneypunct<CharT,International>::do_negative_sign
public: | (1) | |
public: | (2) | |
protected: | (3) | |
protected: | (4) |
1) 公开成员函数,调用最终导出类的成员函数 do_positive_sign
。
2) 公开成员函数,调用最终导出类的成员函数 do_negative_sign
。
3) 返回用作正货币值格式化的字符串。
3) 返回用作负货币值格式化的字符串。
只有返回字符串的首字符是出现于值 sign 所指示的 pos_format()/neg_format() 位置前的字符。剩下的字符出现在货币字符串的剩余部分之后'。
具体而言,对于 "-" 的 negative_sign ,格式化可作为 "-1.23 €" 出现,而对于 "()" 的 negative_sign ,它会作为 "(1.23 €)" 出现。
返回值
保有要用作正或负号的字符的 string_type
类型字符串。
调用示例 windows
#include <iostream>
#include <sstream>
#include <locale>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <iterator>
#include <exception>
#include <Windows.h>
std::vector<std::wstring> locals;
BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam)
{
locals.push_back(pStr);
return TRUE;
}
std::string stows(const std::wstring& ws)
{
std::string curLocale = setlocale(LC_ALL, NULL); // curLocale = "C";
setlocale(LC_ALL, "chs");
const wchar_t* _Source = ws.c_str();
size_t _Dsize = 2 * ws.size() + 1;
char *_Dest = new char[_Dsize];
memset(_Dest, 0, _Dsize);
wcstombs(_Dest, _Source, _Dsize);
std::string result = _Dest;
delete[]_Dest;
setlocale(LC_ALL, curLocale.c_str());
return result;
}
struct space_out : std::moneypunct<char>
{
//提供通货值的格式化模式
pattern do_pos_format() const override
{
return { {value, space, symbol, sign} };
}
//提供通货值的格式化模式
pattern do_neg_format() const override
{
return { {value, space, symbol, sign} };
}
//提供小数点后要显示的位数
int do_frac_digits() const override
{
return 1;
}
//提供用作千分隔符的字符
char_type do_thousands_sep() const override
{
return ',';
}
//提供二个千分隔符间的位数
string_type do_grouping() const override
{
return "\003";
}
//提供用作通货标识符的字符串
string_type do_curr_symbol() const override
{
return "¥";
}
//提供用作小数点的字符
char_type do_decimal_point() const override
{
return '.';
}
//提供指示负值的字符串
string_type do_negative_sign() const override
{
return "(-)";
}
//提供指示正值的字符串
string_type do_positive_sign() const override
{
return "(+)";
}
};
int main()
{
EnumSystemLocalesEx(MyFuncLocaleEx, LOCALE_ALTERNATE_SORTS, NULL, NULL);
for (std::vector<std::wstring>::const_iterator str = locals.begin();
str != locals.end(); ++str)
{
if (stows(*str) == "x-IV_mathan")
{
continue;
}
std::locale locale(stows(*str));
std::cout.imbue(locale);
std::cout << locale.name() << " ";
std::cout.imbue(locale);
std::cout << "american locale: " << std::showbase
<< std::put_money(1234.5) << std::endl;
std::cout.imbue(std::locale(std::cout.getloc(), new space_out));
std::cout << "locale with modified moneypunct: "
<< std::put_money(12345678.0) << std::endl;
}
return 0;
}
输出
de-DE_phoneb american locale: 12,35 €
locale with modified moneypunct: 1,234,567.8 ¥(+)
es-ES_tradnl american locale: 12,35 €
locale with modified moneypunct: 1,234,567.8 ¥(+)
hu-HU_technl american locale: 12,35 Ft
locale with modified moneypunct: 1,234,567.8 ¥(+)
ja-JP_radstr american locale: \1,235
locale with modified moneypunct: 1,234,567.8 ¥(+)
ka-GE_modern american locale: 12,35 ?
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-CN_phoneb american locale: ¥12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-CN_stroke american locale: ¥12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-HK_radstr american locale: HK$12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-MO_radstr american locale: MOP12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-MO_stroke american locale: MOP12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-SG_phoneb american locale: $12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-SG_stroke american locale: $12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-TW_pronun american locale: NT$12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)
zh-TW_radstr american locale: NT$12.35
locale with modified moneypunct: 1,234,567.8 ¥(+)