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++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 设计字符串本地化的最佳方法 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17