我如何知道编译器支持哪些标准格式?

发布于 2024-11-14 23:39:55 字数 219 浏览 1 评论 0原文

我知道一种格式是“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

智商已欠费 2024-11-21 23:39:55

事实并非如此,numeric_limits 显然是根据 IEEE 754 设计的。您只能了解该实现是否符合 IEEE 754 标准。

但请记住,您应该使用 has_infinityhas_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.

一念一轮回 2024-11-21 23:39:55

一般来说,实现 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.,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文