Complex.One Bidang
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mengembalikan instans baru Complex dengan angka riil yang sama dengan satu dan angka imajiner yang sama dengan nol.
public: static initonly System::Numerics::Complex One;
public static readonly System.Numerics.Complex One;
staticval mutable One : System.Numerics.Complex
Public Shared ReadOnly One As Complex
Nilai Bidang
Contoh
Contoh berikut membuat instans Complex nilai dengan menggunakan One properti . Kemudian membandingkan nilai ini dengan nilai lain yang dibuat dengan memanggil Complex konstruktor dengan bagian nyata yang sama dengan satu dan bagian imajiner sama dengan nol. Seperti yang ditunjukkan oleh output dari contoh, dua nilai tersebut sama.
using System;
using System.Numerics;
public class Example
{
public static void Main()
{
Complex value = Complex.One;
Console.WriteLine(value.ToString());
// Instantiate a complex number with real part 1 and imaginary part 0.
Complex value1 = new Complex(1, 0);
Console.WriteLine(value.Equals(value1));
}
}
// The example displays the following output:
// (1, 0)
// True
open System.Numerics
let value = Complex.One
printfn $"{value}"
// Instantiate a complex number with real part 1 and imaginary part 0.
let value1 = Complex(1., 0.)
printfn $"{value.Equals value1}"
// The example displays the following output:
// (1, 0)
// True
Imports System.Numerics
Module Example
Public Sub Main()
Dim value As Complex = Complex.One
Console.WriteLine(value.ToString())
' Instantiate a complex number with real part 1 and imaginary part 0.
Dim value1 As New Complex(1, 0)
Console.WriteLine(value.Equals(value1))
End Sub
End Module
' The example displays the following output:
' (1, 0)
' True