Complex.One 欄位
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在實數等於一且虛數等於零條件下,傳回新 Complex 執行個體。
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
欄位值
範例
下列範例會使用 One 屬性具Complex現化值。 然後,它會將此值與另一個具現化的值進行比較,方法是呼叫 Complex 實數等於 1 的建構函式,而虛數部分等於零。 如範例的輸出所示,這兩個值相等。
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