Decimal.GreaterThan(Decimal, Decimal) 演算子
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
public:
static bool operator >(System::Decimal d1, System::Decimal d2);
public static bool operator > (decimal d1, decimal d2);
static member ( > ) : decimal * decimal -> bool
Public Shared Operator > (d1 As Decimal, d2 As Decimal) As Boolean
パラメーター
- d1
- Decimal
比較する最初の値です。
- d2
- Decimal
比較する 2 番目の値です。
戻り値
d1
が d2
より大きい場合は true
。それ以外の場合は false
。
注釈
メソッドは、 GreaterThan 値に対して大なり演算子の演算を定義し Decimal ます。 次のようなコードが有効になります。
using System;
public class Example
{
public static void Main()
{
Decimal number1 = 16354.0699m;
Decimal number2 = 16354.0695m;
Console.WriteLine("{0} > {1}: {2}", number1,
number2, number1 > number2);
number1 = Decimal.Round(number1, 2);
number2 = Decimal.Round(number2, 2);
Console.WriteLine("{0} > {1}: {2}", number1,
number2, number1 > number2);
}
}
// The example displays the following output:
// 16354.0699 > 16354.0695: True
// 16354.07 > 16354.07: False
Module Example
Public Sub Main()
Dim number1 As Decimal = 16354.0699d
Dim number2 As Decimal = 16354.0695d
Console.WriteLine("{0} > {1}: {2}", number1,
number2, number1 > number2)
number1 = Decimal.Round(number1, 2)
number2 = Decimal.Round(number2, 2)
Console.WriteLine("{0} > {1}: {2}", number1,
number2, number1 > number2)
End Sub
End Module
' The example displays the following output:
' 16354.0699 > 16354.0695: True
' 16354.07 > 16354.07: False
カスタム演算子をサポートしない言語では、代わりにメソッドを呼び出すことができ Compare ます。 また、 GreaterThan 次の例に示すように、メソッドを直接呼び出すこともできます。
Module Example
Public Sub Main()
Dim number1 As Decimal = 16354.0699d
Dim number2 As Decimal = 16354.0695d
Console.WriteLine("{0} > {1}: {2}", number1, number2,
Decimal.op_GreaterThan(number1, number2))
number1 = Decimal.Round(number1, 2)
number2 = Decimal.Round(number2, 2)
Console.WriteLine("{0} > {1}: {2}", number1, number2,
Decimal.op_GreaterThan(number1, number2))
End Sub
End Module
' The example displays the following output:
' 16354.0699 > 16354.0695: True
' 16354.07 > 16354.07: False
この演算子の同等の方法は次のようになります。 Decimal.Compare(Decimal, Decimal)