std::isfinite
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
定义于头文件 <cmath>
|
||
bool isfinite( float arg ); |
(C++11 起) | |
bool isfinite( double arg ); |
(C++11 起) | |
bool isfinite( long double arg ); |
(C++11 起) | |
确定是否给定的浮点数
arg
具有有限的价值,即它是正常的,低于正常或零,但不是无限的或NAN
. [编辑] 参数
arg | - |
[编辑] 返回值
true值,如果
arg
具有有限的价值,false不然[编辑] 另请参阅
(C++11) |
(函数) |
(C++11) |
(函数) |
(C++11) |
(函数) |
(C++11) |
(函数) |