共用方式為


Single.IsSubnormal(Single) 方法

定義

判斷指定的值是否為次正規值。

public:
 static bool IsSubnormal(float f);
public:
 static bool IsSubnormal(float f) = System::Numerics::INumberBase<float>::IsSubnormal;
public static bool IsSubnormal (float f);
static member IsSubnormal : single -> bool
Public Shared Function IsSubnormal (f As Single) As Boolean

參數

f
Single

單精度浮點數。

傳回

如果 f 不正常,則為 true;否則 false

實作

備註

這樣會有效檢查值不是 NaN、不是無限、不正常,也不是零。

適用於