我正在尝试格式化货币,使用下面的代码作为测试。
long double mon = 1234567.45; // or std::string mon = "123.45";
std::cout.imbue(std::locale(""));
std::cout << "normal: " << mon << std::endl;
std::cout << "formated: " << std::showbase << std::put_money(mon*100) << std::endl;
但我得到了意想不到的结果。
g++ -std=c++0x -O1 -g3 -Wall -c -fmessage-length=0 -o tst.o tst.cpp
g++ -o tst tst.o
normal: -2.64326e-199
formated: 526296518301961010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
我在 Win10 上使用 g++ 版本 4.8.1
在我的 Ubuntu 机器上,使用版本 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04)。我得到以下正确结果。
normal: 1,12346e+06
formated: € 1 123 456,45
到底是怎么回事??