std::numpunct<CharT>::grouping, std::numpunct<CharT>::do_grouping
来自 cppreference.com
在头文件 <locale> 中定义 |
||
public: std::string grouping() const; |
(1) | |
protected: virtual std::string do_grouping() const; |
(2) | |
1) 公共成员函数,调用最派生类的成员函数
do_grouping
。2) 返回一个 std::string,在每个 char 元素中,表示由 num_put::put()(以及因此,basic_ostream::operator<<)格式化的数字输出中的每组的数字个数。
此函数返回一个字符串 vec,用作整数值的向量。(例如,"\003" 指定每组 3 位数字,而 "3" 意味着每组 51 位数字)。每个元素 vec[i] 表示数字整数部分的第 i
个数字组中的数字个数,从右向左计数:vec[0] 保存最右边的组中的数字个数,vec[1] - 右边的第二组中的数字个数,依此类推。由最后一个字符 vec[vec.size()-1] 指示的分组将重复用于对数字(左部分)中的所有剩余数字进行分组。如果 vec[i] 非正或等于 CHAR_MAX,则相应数字组的大小不受限制。
[编辑] 返回值
类型为 std::string 的对象,包含分组。std::numpunct
的标准特化返回一个空字符串,表示没有分组。典型分组(例如 en_US
区域设置)返回 "\003"。
[编辑] 示例
运行此代码
#include <iostream> #include <limits> #include <locale> struct space_out : std::numpunct<char> { char do_thousands_sep() const { return ' '; } // separate with spaces std::string do_grouping() const { return "\1"; } // groups of 1 digit }; struct g123 : std::numpunct<char> { std::string do_grouping() const { return "\1\2\3"; } }; int main() { std::cout << "Default locale: " << 12345678 << '\n'; std::cout.imbue(std::locale(std::cout.getloc(), new space_out)); std::cout << "Locale with modified numpunct: " << 12345678 << '\n'; std::cout.imbue(std::locale(std::cout.getloc(), new g123)); std::cout << "Locale with \\1\\2\\3 grouping: " << std::numeric_limits<unsigned long long>::max() << '\n' << "Same, for a floating-point number: " << std::fixed << 123456789.123456789 << '\n'; }
输出
Default locale: 12345678 Locale with modified numpunct: 1 2 3 4 5 6 7 8 Locale with \1\2\3 grouping: 18,446,744,073,709,551,61,5 Same, for a floating-point number: 123,456,78,9.123457
[编辑] 另请参阅
[虚拟] |
提供用作千位分隔符的字符 (虚拟保护成员函数) |