isfinite
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
#define isfinite(arg) /* implementation defined */ |
||
确定是否给定的浮点数
arg
具有有限的价值,即它是正常的,低于正常或零,但不是无限的或NAN
。宏返回一个整数值.原文:
Determines if the given floating point number
arg
has finite value i.e. it is normal, subnormal or zero, but not infinite or NAN
. The macro returns an integral value.[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
如果
arg
的非零值,积分值具有有限的价值,0否则.....原文:
Nonzero integral value if
arg
has finite value, 0 otherwise.[编辑] 另请参阅
(C99) |
分类浮点值 原文: categorizes the given floating point value (函数) |
(C99) |
检查,如果给定的数目是无限的 原文: checks if the given number is infinite (函数) |
(C99) |
检查,如果给定的数字为NaN (函数) |
(C99) |
检查如果给定的数字是正常的 原文: checks if the given number is normal (函数) |
C++ documentation for isfinite
|