该函数返回与宏常量之一匹配的 int 类型值,具体取决于 x 的值。
值 | 描述 |
---|---|
FP_INFINITE | 正无穷大或负无穷大 |
FP_NAN | 不是数字 |
FP_ZERO | 值为零。 |
FP_SUBNORMAL | 亚正常值 |
FP_NORMAL | 正常值 |
用法
假设一个数字是 x。语法是:
int fpclassify(float x);
int fpclassify(double x);
int fpclassify(long double x);
int fpclassify(int x);
参数
x: 与宏常量之一匹配的值。
返回值
它返回以下整数值:FP_INFINITE、FP_NAN、FP_ZERO、FP_SUBNORMAL、FP_NORMAL。
示例
让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double d=1.0/0.0;
switch(fpclassify(d))
{
case FP_INFINITE:
cout<<"1.0/0.0 is a infinite number ";
break;
case FP_NAN:
cout<<"1.0/0.0 is Not a Number";
break;
case FP_ZERO:
cout<<"1.0/0.0 is zero.";
break;
case FP_SUBNORMAL:
cout<<"1.0/0.0 is a subnormal value";
break;
case FP_NORMAL:
cout<<"1.0/0.0 is a normal value";
break;
default:
cout<<"wrong number";
}
return 0;
}
输出:
1.0/0.0 is a infinite number
在本例中,fpclassify() 函数确定 x 是一个无限数。
相关用法
- C++ Math fabs()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math fma()用法及代码示例
- C++ Math fmin()用法及代码示例
- C++ Math frexp()用法及代码示例
- C++ Math fmax()用法及代码示例
- C++ Math floor()用法及代码示例
- C++ Math fmod()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math fpclassify()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。