Checking if a double (or float) is NaN in C++(在 C++ 中检查双精度(或浮点数)是否为 NaN)
问题描述
有 isnan() 函数吗?
PS.:我在 MinGW(如果这有所作为).>
我通过使用
中的 isnan() 解决了这个问题,它在
中不存在,我是 >#include
首先输入.
根据 IEEE 标准,NaN 值具有奇怪的特性,即涉及它们的比较总是错误.也就是说,对于一个浮点 f,f != f
将是真的 only 如果 f 是 NaN.
请注意,正如下面的一些评论指出的那样,并非所有编译器在优化代码时都尊重这一点.
对于任何声称使用 IEEE 浮点数的编译器,这个技巧应该有效.但我不能保证它会在实践中起作用.如有疑问,请咨询您的编译器.
Is there an isnan() function?
PS.: I'm in MinGW (if that makes a difference).
I had this solved by using isnan() from <math.h>
, which doesn't exist in <cmath>
, which I was #include
ing at first.
According to the IEEE standard, NaN values have the odd property that comparisons involving them are always false. That is, for a float f, f != f
will be true only if f is NaN.
Note that, as some comments below have pointed out, not all compilers respect this when optimizing code.
For any compiler which claims to use IEEE floating point, this trick should work. But I can't guarantee that it will work in practice. Check with your compiler, if in doubt.
这篇关于在 C++ 中检查双精度(或浮点数)是否为 NaN的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中检查双精度(或浮点数)是否为 NaN


基础教程推荐
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 常量变量在标题中不起作用 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01