-->

Read and write using std::hexfloat

2019-02-17 18:33发布

问题:

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:

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