Complex.IsFinite(Complex) 方法

定义

确定指定的复数是否是有限的。

public:
 static bool IsFinite(System::Numerics::Complex value);
public:
 static bool IsFinite(System::Numerics::Complex value) = System::Numerics::INumberBase<System::Numerics::Complex>::IsFinite;
public static bool IsFinite (System.Numerics.Complex value);
static member IsFinite : System.Numerics.Complex -> bool
Public Shared Function IsFinite (value As Complex) As Boolean

参数

value
Complex

一个复数。

返回

如果实部和虚部都是有限的(零、次正规数或正规数),则为 true;否则为 false

实现

适用于