带有数字分组的输出数字(1000000为1,000,000,依此类推)

时间:2011-07-23 12:00:04

标签: c++ localization formatting numbers

虽然我自己写的东西很容易写,但我经常想知道在iomanip或某个地方是否有这样的东西。但是,我从未发现过有用的东西。理想情况下,它对区域设置很敏感(例如在德国,您将1,234,567.89写为1.234.567,89),因此非常优于手工构建逗号字符串。

1 个答案:

答案 0 :(得分:8)

根据this thread,您可以通过执行以下操作在输出流上设置区域设置:

#include <iostream>
#include <locale>
#include <string>

struct my_facet : public std::numpunct<char> {
    explicit my_facet(size_t refs = 0) : std::numpunct<char>(refs) {}
    virtual char do_thousands_sep() const { return ','; }
    virtual std::string do_grouping() const { return "\003"; }
};

int main() {
    std::locale global;
    std::locale withgroupings(global, new my_facet);
    std::locale was = std::cout.imbue(withgroupings);
    std::cout << 1000000 << std::endl;
    std::cout.imbue(was);

    return 0;
}

我自己没有尝试过,但这听起来确实是一种合理的做法。