我怎样才能使用hexfloat

时间:2014-06-10 18:01:13

标签: gcc c++11

赢7 gcc 4.8.2(cygwin)

参考:http://www.cplusplus.com/reference/ios/hexfloat/

(和其他参考文献)。

stringstream pretty;
pretty << std::hexfloat;

使用-std = c ++ 11和-std = gnu ++ 11生成编译器错误('hexfloat'不是'std'的成员)。因此,尽管它很简单,我该如何使用它?

我尝试了尽可能多的变种。在这一点上,我只是'询问gcc是否符合标准。

我可以在printf()函数中生成hexfloat但不在stream中生成。

1 个答案:

答案 0 :(得分:3)

G ++开发团队确实将此列为online documentation中的缺失(表1.5,第8.10.2节),并且有一个开放的错误报告here