共用方式為


Complex.UnaryNegation(Complex) 運算子

定義

傳回指定複數的加法反函數。

public:
 static System::Numerics::Complex operator -(System::Numerics::Complex value);
public:
 static System::Numerics::Complex operator -(System::Numerics::Complex value) = System::Numerics::IUnaryNegationOperators<System::Numerics::Complex, System::Numerics::Complex>::op_UnaryNegation;
public static System.Numerics.Complex operator - (System.Numerics.Complex value);
static member ( ~- ) : System.Numerics.Complex -> System.Numerics.Complex
Public Shared Operator - (value As Complex) As Complex

參數

value
Complex

要否定的值。

傳回

value 參數 RealImaginary 元件的結果乘以 -1。

實作

備註

UnaryNegation 方法會定義複數之一元負號(加法反餘數)運算子的運算。 它會啟用程式代碼,例如:

Complex c1 = new Complex(1.7, 3.9);
Complex c2 = -c1;
let c1 = Complex(1.7, 3.9)
let c2 = -c1
Dim c1 As New Complex(1.7, 3.9)
Dim c2 As Complex = -c1

產生的複數會在新增至原始複數時產生 Zero 值。 不支援自定義運算子的語言可以改為呼叫 Negate 方法。

這個運算子的對等方法是 Complex.Negate(Complex)

適用於

另請參閱