How can I set the decimal separator to be a comma?

后端 未结 2 649
清歌不尽
清歌不尽 2020-11-27 20:21

I would like to read and write pi as 3,141592 instead of 3.141592, as using the comma is common in many European countries. How can I acco

2条回答
  •  借酒劲吻你
    2020-11-27 20:55

    You should use basic_ios::imbue to set the preferred locale.

    Take a look here: http://www.cplusplus.com/reference/ios/ios_base/imbue/

    Locales allow you to use the preferred way by the user, so if a computer in Italy uses comma to separate decimal digits, in the US the dot is still used. Using locales is a Good Practice.

    But if you want to explicitly force the use of the comma, take a look here: http://www.cplusplus.com/reference/locale/numpunct/decimal_point/

    Here a small example I just made with g++ which enforces the char ',' (passing the separator as template argument is just for fun, not really necessary)

    #include 
    #include 
    
    template 
    class punct_facet: public std::numpunct {
    protected:
        charT do_decimal_point() const { return sep; }
    };
    
    int main(int argc, char **argv) {
        std::cout.imbue(std::locale(std::cout.getloc(), new punct_facet));
        std::cout << "My age is " << 3.1415 << " lightyears.\n";
    }
    

    Note that using cout.getloc() I'm overriding just a single facet in the currently set locale, that is, in the current locale settings of cout, I'm changing only how the punctuation is done.

    do_decimal_point is a virtual function of std::numpunct that you can redefine to provide your custom separator. This virtual function will be used by numpunct::decimal_point when printing your number.

提交回复
热议问题