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
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- CString 到 char* 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01