Complex.Real 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前 Complex 對象的實際元件。
public:
property double Real { double get(); };
public double Real { get; }
member this.Real : double
Public ReadOnly Property Real As Double
屬性值
複數的實際元件。
範例
下列範例會具現化 Complex 物件的陣列,並顯示表單中每個的實數和虛數位件,a + bi
。
using System;
using System.Numerics;
public class Example
{
public static void Main()
{
Complex[] values = { new Complex(12.5, -6.3),
new Complex(-17.8, 1.7),
new Complex(14.4, 8.9) };
foreach (var value in values)
Console.WriteLine("{0} + {1}i", value.Real, value.Imaginary);
}
}
// The example displays the following output:
// 12.5 + -6.3i
// -17.8 + 1.7i
// 14.4 + 8.9i
open System.Numerics
let values = [ Complex(12.5, -6.3); Complex(-17.8, 1.7); Complex(14.4, 8.9) ]
for value in values do
printfn $"{value.Real} + {value.Imaginary}i"
// The example displays the following output:
// 12.5 + -6.3i
// -17.8 + 1.7i
// 14.4 + 8.9i
Imports System.Numerics
Module Example
Public Sub Main()
Dim values() As Complex = { New Complex(12.5, -6.3),
New Complex(-17.8, 1.7),
New Complex(14.4, 8.9) }
For Each value In values
Console.WriteLine("{0} + {1}i", value.Real, value.Imaginary)
Next
End Sub
End Module
' The example displays the following output:
' 12.5 + -6.3i
' -17.8 + 1.7i
' 14.4 + 8.9i
備註
假設複數 a + bi
,Real 屬性會傳回 a
的值。