Read and write using std::hexfloat

2019-02-17 18:45发布

This piece of code printed 0 on my machine, but I expected 0.3. What's wrong? I'm using g++ 6.3.1 on latest Arch Linux. Compilation flags seem unrelevent.

#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;
}

1条回答
仙女界的扛把子
2楼-- · 2019-02-17 19:07

Use double d = std::strtod(s.str().c_str(), NULL); as a workaround. It seems like a bug.

查看更多
登录 后发表回答