当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Math isunordered()用法及代码示例


isunordered() 函数检查第一个参数的值是否可以与第二个参数进行有意义的比较。如果第一个参数无法与第二个参数进行有意义的比较(即一个或两个都是 NAN),则返回 1,否则返回 0。

用法

考虑两个数字 'x' 和 'y'。语法是:

bool isunordered(float x,float y);
bool isunordered(double x,double y);
bool isunordered(float x,float y);
bool isunordered(Arithmetic x,Arithmetic y);

参数

(x,y):我们要比较的值。

返回值

如果一个或两个的值都是 NAN,则返回 1,否则返回 0。

例子1

当 x 的值为 NAN 时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
  float x=sqrt(-2);
  float y=3.2;
  cout<<"Values of x and y are:"<<x<<","<<y<<'\n';
  cout<<"isunordered(x,y):"<<isunordered(x,y);
  return 0;
}

输出:

Values of x and y are:nan,3.2
isunordered(x,y):1

在本例中,x 的值为 NAN。因此,该函数返回 1。

例子2

让我们看一个简单的例子

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
  float x=2.6;
  float y=3.2;
  cout<<"Values of x and y are:"<<x<<","<<y<<'\n';
  cout<<"isunordered(x,y):"<<isunordered(x,y);
  return 0;
}

输出:

Values of x and y are:2.6,3.2
isunordered(x,y):0

在这个例子中,x 和 y 都不是 NAN。因此,该函数返回 0 值。






相关用法


注:本文由纯净天空筛选整理自 C++ Math isunordered()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。