isnormal
判斷浮點值是否為一般值。
語法
int isnormal(
/* floating-point */ x
); /* C-only macro */
template <class FloatingType>
inline bool isnormal(
FloatingType x
) throw(); /* C++-only function template */
參數
x
要測試的浮點值。
傳回值
isnormal
如果自變數x
不是零、次正規、無限或 NaN,則傳回非零值 (true
在 C++ 程式代碼中)。 否則, isnormal
會傳回 0 (false
在C++程式代碼中)。
備註
isnormal
當編譯為 C 時,是巨集,當編譯為 C++ 時會是內嵌函式範本。
需求
函式 | 必要的標頭 (C) | 必要的標頭 (C++) |
---|---|---|
isnormal |
<math.h> | <math.h> 或 <cmath> |
如需相容性詳細資訊,請參閱相容性。
另請參閱
數學與浮點支援
isfinite
、 、 _finite
_finitef
isinf
isnan
、 、 _isnan
_isnanf
_fpclass
, _fpclassf