std::fpclassify
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
int fpclassify( float arg ); |
(C++11 起) | |
int fpclassify( double arg ); |
(C++11 起) | |
int fpclassify( long double arg ); |
(C++11 起) | |
分为以下几类:零,低于正常,正常的,无限的,NAN或实现定义的类别分类浮点值
arg
. 原文:
Categorizes floating point value
arg
into the following categories: zero, subnormal, normal, infinite, NAN, or implementation-defined category. [编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
FP_INFINITE,FP_NAN,FP_NORMAL,FP_SUBNORMAL,FP_ZERO或实现自定义类型,指定类别的
arg
.原文:
one of FP_INFINITE, FP_NAN, FP_NORMAL, FP_SUBNORMAL, FP_ZERO or implementation-defined type, specifying the category of
arg
.[编辑] 另请参阅
(C++11) |
如果给定数量的检查具有有限的价值 原文: checks if the given number has finite value (函数) |
(C++11) |
检查,如果给定的数目是无限的 原文: checks if the given number is infinite (函数) |
(C++11) |
检查,如果给定的数字为NaN (函数) |
(C++11) |
检查如果给定的数字是正常的 原文: checks if the given number is normal (函数) |
提供查询所有基础数字类型属性的接口。 (类模板) |