参考:http://www.cplusplus.com/reference/ios/hexfloat/
(和其他参考文献)。
stringstream pretty;
pretty << std::hexfloat;
使用-std = c ++ 11和-std = gnu ++ 11生成编译器错误('hexfloat'不是'std'的成员)。因此,尽管它很简单,我该如何使用它?
我尝试了尽可能多的变种。在这一点上,我只是'询问gcc是否符合标准。
我可以在printf()函数中生成hexfloat但不在stream中生成。