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