std::isinf
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
bool isinf( float arg ); |
(C++11 起) | |
bool isinf( double arg ); |
(C++11 起) | |
bool isinf( long double arg ); |
(C++11 起) | |
确定是否在给定的浮点数
arg
是正的或负的无穷. 原文:
Determines if the given floating point number
arg
is positive or negative infinity. [编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
true如果
arg
是无限的,false其他方式原文:
true if
arg
is infinite, false otherwise[编辑] 另请参阅
(C++11) |
分类浮点值 原文: categorizes the given floating point value (函数) |
(C++11) |
如果给定数量的检查具有有限的价值 原文: checks if the given number has finite value (函数) |
(C++11) |
检查,如果给定的数字为NaN (函数) |
(C++11) |
检查如果给定的数字是正常的 原文: checks if the given number is normal (函数) |