我如何知道编译器支持哪些标准格式?
我知道一种格式是“IEEE 754 浮点标准”
检查 C++ 编译器是否使用 IEEE 754 浮点标准 还有
std::numeric_limits<float>::is_iec559;
哪些其他标准格式?
如何检查 C++ 编译器是否遵循该格式?
编辑:有多少种格式?这些是什么 ?就c++语言而言
I know one format is "IEEE 754 floating point standard"
To check if a C++ compiler uses the IEEE 754 floating point standard or not
std::numeric_limits<float>::is_iec559;
What other standard formats are there?
How do I check that the C++ compiler is following that format or not?
EDIT : how many Types of Format are there ? what are they ? in terms of c++ Language
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实并非如此,
numeric_limits
显然是根据 IEEE 754 设计的。您只能了解该实现是否符合 IEEE 754 标准。但请记住,您应该使用
has_infinity
、has_quiet_NaN
等来检查各个功能 - 基本上,您检查某些功能,而不是特定的浮点格式。You don't,
numeric_limits
is clearly designed with IEEE 754 in mind. You only get to know if the implementation is IEEE 754 compliant, or not.But keep in mind that you should use
has_infinity
,has_quiet_NaN
etc. to check for individual features - basically, you check for certain features, not for specific floating point formats.一般来说,实现 std::numeric_limits::is_iec559 并不是一个好主意,因为对于 g++,即使您的代码是使用 fastmath 选项编译的,情况也是如此,例如不支持 IEEE 754 NaN 行为(它主要只是二进制级别兼容表示)。
即,实际上
is_iec559
不会告诉您该实现是否符合 IEEE 754 标准。因此,您需要使用特定于编译器的方法。
干杯&呵呵,
It's in general not a good idea to realy on
std::numeric_limits<double>::is_iec559
, because with g++ this is true even when your code is compiled with fastmath option, which e.g. does not support IEEE 754 NaN behavior (it's mostly just binary level compatible representation).I.e., in practice
is_iec559
does not tell you whether the implementation is IEEE 754-compliant or not.So, you're down to compiler-specific means.
Cheers & hth.,