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 isgreater()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math islessequal()用法及代码示例
- C++ Math isnormal()用法及代码示例
- C++ Math isgreaterequal()用法及代码示例
- C++ Math isnan()用法及代码示例
- C++ Math isinf()用法及代码示例
- C++ Math ilogb()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math erfc()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math isunordered()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。