本地化库
本地环境设施包含字符分类和字符串校对、数值、货币及日期/时间格式化和分析,以及消息取得的国际化支持。本地环境设置控制流 I/O 、正则表达式库和 C++ 标准库的其他组件的行为。
平面类别
定义数值标点规则
std::numpunct
template< class CharT > |
平面 std::numpunct
封装数值标点偏好。流 I/O 操作通过 std::num_get 和 std::num_put ,将用 std::numpunct
用于剖析数值输入,和格式化数值输出。
std::numpunct
所支持的数字拥有后述格式。此处 digit
表示 fmtflags
参数值所指定的基底集, thousands-sep
和 decimal-point
分别为 thousands_sep() 和 decimal_point() 函数的结果。整数值格式如下:
integer ::= [sign] units
sign ::= plusminus
plusminus ::= '+' | '-'
units ::= digits [thousands-sep units]
digits ::= digit [digits]
thousand-sep
之间的数位( digits
的最大大小)由 grouping() 的结果指定。
浮点值格式如下:
floatval ::= [sign] units [decimal-point [digits]] [e [sign] digits] |
[sign] decimal-point digits [e [sign] digits]
e ::= 'e' | 'E'
继承图
标准库提供二个孤立(独立于本地环境)的特化:
定义于头文件 | |
std::numpunct<char> | 提供 "C" 本地环境偏好的等价版本 |
std::numpunct<wchar_t> | 提供 "C" 本地环境偏好的宽字符等价版本 |
另外, C++ 程序中构造的每个 locale 对象实现这些特化的其自身(本地环境限定)版本。
成员类型
成员类型 | 定义 |
char_type | charT |
string_type | std::basic_string<charT> |
成员函数
(构造函数) | 构造新的 numpunct 平面 (公开成员函数) |
(析构函数) | 析构 numpunct 平面 (受保护成员函数) |
decimal_point | 调用 do_decimal_point (公开成员函数) |
thousands_sep | 调用 do_thousands_sep (公开成员函数) |
grouping | 调用 do_grouping (公开成员函数) |
truenamefalsename | 调用 do_truename 或 do_falsename (公开成员函数) |
受保护成员函数
do_decimal_point [虚] | 提供用作小数点的字符 (虚受保护成员函数) |
do_thousands_sep [虚] | 提供用作千分隔符的字符 (虚受保护成员函数) |
do_grouping [虚] | 提供一对千分隔符之间的位数 (虚受保护成员函数) |
do_truenamedo_falsename [虚] | 提供用作布尔 true 和 false 名称的字符串 (虚受保护成员函数) |
成员对象
static std::locale::id id | locale 的 id (公开成员对象) |
调用示例 windows
#include <iostream>
#include <locale>
struct french_bool : std::numpunct<char>
{
string_type do_truename() const
{
return "oui";
}
string_type do_falsename() const
{
return "non";
}
};
int main()
{
std::cout << "default locale: "
<< std::boolalpha << true << ", " << false << std::endl;
std::cout.imbue(std::locale(std::cout.getloc(), new french_bool));
std::cout << "locale with modified numpunct: " << std::endl
<< std::boolalpha
<< "do_truename: " << true << std::endl
<< "do_falsename: " << false << std::endl;
return 0;
}
输出
default locale: true, false
locale with modified numpunct:
do_truename: oui
do_falsename: non