Complex.Zero Mező
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Egy új Complex példányt ad vissza nullával egyenlő valós számmal és egy nulla értékű képzeletbeli számmal.
public: static initonly System::Numerics::Complex Zero;
public static readonly System.Numerics.Complex Zero;
staticval mutable Zero : System.Numerics.Complex
Public Shared ReadOnly Zero As Complex
Mező értéke
Példák
Az alábbi példa egy Complex értéket példányosít a Zero tulajdonság használatával. Ezután összehasonlítja ezt az értéket egy másik értékkel, amely a konstruktort nullával egyenlő valós részre és egy nulla értékű képzeletbeli részre hívja meg Complex . Ahogy a példa kimenete is mutatja, a két érték egyenlő.
using System;
using System.Numerics;
public class Example
{
public static void Main()
{
Complex value = Complex.Zero;
Console.WriteLine(value.ToString());
// Instantiate a complex number with real part 0 and imaginary part 1.
Complex value1 = new Complex(0, 0);
Console.WriteLine(value.Equals(value1));
}
}
// The example displays the following output:
// (0, 0)
// True
open System.Numerics
let value = Complex.Zero
printfn $"{value}"
// Instantiate a complex number with real part 0 and imaginary part 1.
let value1 = Complex(0, 0)
printfn $"{value.Equals value1}"
// The example displays the following output:
// (0, 0)
// True
Imports System.Numerics
Module Example
Public Sub Main()
Dim value As Complex = Complex.Zero
Console.WriteLine(value.ToString())
' Instantiate a complex number with real part 1 and imaginary part 0.
Dim value1 As New Complex(0, 0)
Console.WriteLine(value.Equals(value1))
End Sub
End Module
' The example displays the following output:
' (0, 0)
' True
Megjegyzések
A Zero tulajdonságot leggyakrabban egy érték nullával való összehasonlítására Complex használják.