使用 std::hexfloat 读写

Read and write using std::hexfloat

这段代码在我的机器上打印 0,但我期望 0.3。怎么了?我在最新的 Arch Linux 上使用 g++ 6.3.1。编译标志似乎无关紧要。

#include <iostream>
#include <sstream>
int main() {
    std::stringstream s;
    s << std::hexfloat << 0.3 << std::endl;
    double d = -1.0;
    while(s >> std::hexfloat >> d)
        std::cout << d << std::endl;
}

使用 double d = std::strtod(s.str().c_str(), NULL); 作为解决方法。这似乎是一个错误。