std::isunordered
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
bool isunordered( float x, float y ); |
(C++11 起) | |
bool isunordered( double x, double y ); |
(C++11 起) | |
bool isunordered( long double x, long double y ); |
(C++11 起) | |
确定如果浮点数
x
y
是无序的,即,一个或两个都是NaN,因此不能进行有意义的比较彼此.原文:
Determines if the floating point numbers
x
and y
are unordered, that is, one or both are NaN and thus cannot be meaningfully compared with each other.[编辑] 参数
x | - | 浮点值
|
y | - | 浮点值
|
[编辑] 返回值
true,如果任
x
或y
是NaN,则false其他方式原文:
true if either
x
or y
is NaN, false otherwise[编辑] 另请参阅
(C++11) |
分类浮点值 原文: categorizes the given floating point value (函数) |
(C++11) |
检查,如果给定的数字为NaN (函数) |