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
。此函数返回一个字符串 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 ' '; } // 以空格分隔 std::string do_grouping() const { return "\1"; } // 1 位组 }; struct g123 : std::numpunct<char> { std::string do_grouping() const { return "\1\2\3"; } }; int main() { std::cout << "默认本地环境: " << 12345678 << '\n'; std::cout.imbue(std::locale(std::cout.getloc(), new space_out)); std::cout << "带有修改的 numpunct 的本地环境: " << 12345678 << '\n'; std::cout.imbue(std::locale(std::cout.getloc(), new g123)); std::cout << "带有 \\1\\2\\3 分组的本地环境: " << std::numeric_limits<unsigned long long>::max() << '\n' << "相同,用于浮点数值: " << std::fixed << 123456789.123456789 << '\n'; }
输出:
默认本地环境: 12345678 带有修改的 numpunct 的本地环境: 1 2 3 4 5 6 7 8 带有 \\1\\2\\3 分组的本地环境: 18,446,744,073,709,551,61,5 相同,用于浮点数值: 123,456,78,9.123457
参阅
提供用作千位分隔符的字符 (虚受保护成员函数) |