<cmath> <ctgmath>

isunordered

isunordered(x,y)
函数
bool isunordered (float x      , float y);bool isunordered (double x     , double y);bool isunordered (long double x, long double y);
是否无序
返回 xy 是否为无序值

如果一个或两个参数是NaN,则这些参数是无序的,函数返回 true。在任何情况下,此函数都不会引发 FE_INVALID 异常。

在 C 语言中,这被实现为一个返回 int 值的宏。 xy 的类型都应为 floatdoublelong double
在 C++ 中,它通过针对每种浮点类型的函数重载实现,每个重载都返回一个 bool 值。

参数

x, y
要检查其是否无序的值。

返回值

如果 xy 中任意一个是NaN,则为 true (1)。
否则为 false (0)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* isunordered example */
#include <stdio.h>      /* printf */
#include <math.h>       /* isunordered, sqrt */

int main ()
{
  double result;
  result = sqrt (-1.0);

  if (isunordered(result,0.0))
    printf ("sqrt(-1.0) and 0.0 cannot be ordered");
  else
    printf ("sqrt(-1.0) and 0.0 can be ordered");

  return 0;
}

输出

sqrt(-1.0) and 0.0 cannot be ordered


另见