Complex.Equality(Complex, Complex) 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回值,這個值表示兩個複數是否相等。
public:
static bool operator ==(System::Numerics::Complex left, System::Numerics::Complex right);
public:
static bool operator ==(System::Numerics::Complex left, System::Numerics::Complex right) = System::Numerics::IEqualityOperators<System::Numerics::Complex, System::Numerics::Complex, bool>::op_Equality;
public static bool operator == (System.Numerics.Complex left, System.Numerics.Complex right);
static member ( = ) : System.Numerics.Complex * System.Numerics.Complex -> bool
Public Shared Operator == (left As Complex, right As Complex) As Boolean
參數
- left
- Complex
要比較的第一個複數。
- right
- Complex
要比較的第二個複數。
傳回
如果 left
和 right
參數具有相同的值,true
;否則,false
。
實作
備註
Equality 方法會定義 Complex 值的等號運算符作業。 它會啟用程式代碼,例如:
Complex c1 = new Complex(12.6, 4.3);
Complex c2 = new Complex(11.1, 8.9);
if (c1 == c2)
let c1 = Complex(12.6, 4.3);
let c2 = Complex(11.1, 8.9);
if c1 = c2 then
Dim c1 As New Complex(12.6, 4.3)
Dim c2 As New Complex(11.1, 8.9)
If c1 = c2 Then
不支援自定義運算子的語言可以改為呼叫 Equals(Complex) 方法。
如果其實際部分相等,則兩個複數相等,而且其虛數部分相等。 Equality 方法相當於下列表示式:
return this.Real == value.Real && this.Imaginary == value.Imaginary;
this.Real = value.Real && this.Imaginary = value.Imaginary
Return Me.Real = value.Real AndAlso Me.Imaginary = value.Imaginary
請注意,由於精確度的差異,顯然相等的兩個複數可以視為不相等。 如需詳細資訊和可能的因應措施,請參閱 Equals(Complex) 方法。
這個運算子的對等方法是 Complex.Equals