IComparer<T>.Compare(T, T) メソッド

定義

2 つのオブジェクトを比較して、一方が他方より小さいか、同じか、または大きいかを示す値を返します。

public:
 int Compare(T x, T y);
public int Compare (T x, T y);
public int Compare (T? x, T? y);
abstract member Compare : 'T * 'T -> int
Public Function Compare (x As T, y As T) As Integer

パラメーター

x
T

比較する最初のオブジェクト。

y
T

比較する 2 番目のオブジェクト。

戻り値

xy の相対値を示す符号付き整数。次の表を参照してください。

[値] 説明
0 より小さい値xy より小さい値です。
ゼロxy は等しい。
0 より大きい値xy より大きくなっています。

次の例では、 インターフェイスを IComparer<T> 実装して、型 Box のオブジェクトをディメンションに従って比較します。 この例は、 クラスに対して提供されるより大きな例の Comparer<T> 一部です。

// This class is not demonstrated in the Main method
// and is provided only to show how to implement
// the interface. It is recommended to derive
// from Comparer<T> instead of implementing IComparer<T>.
public class BoxComp : IComparer<Box>
{
    // Compares by Height, Length, and Width.
    public int Compare(Box x, Box y)
    {
        if (x.Height.CompareTo(y.Height) != 0)
        {
            return x.Height.CompareTo(y.Height);
        }
        else if (x.Length.CompareTo(y.Length) != 0)
        {
            return x.Length.CompareTo(y.Length);
        }
        else if (x.Width.CompareTo(y.Width) != 0)
        {
            return x.Width.CompareTo(y.Width);
        }
        else
        {
            return 0;
        }
    }
}
' This class is not demonstrated in the Main method
' and is provided only to show how to implement
' the interface. It is recommended to derive
' from Comparer<T> instead of implementing IComparer<T>.
Public Class BoxComp
    Implements IComparer(Of Box)
    ' Compares by Height, Length, and Width.
    Public Function Compare(ByVal x As Box, ByVal y As Box) As Integer Implements _
                                                IComparer(Of Box).Compare
        If x.Height.CompareTo(y.Height) <> 0 Then
            Return x.Height.CompareTo(y.Height)
        ElseIf x.Length.CompareTo(y.Length) <> 0 Then
            Return x.Length.CompareTo(y.Length)
        ElseIf x.Width.CompareTo(y.Width) <> 0 Then
            Return x.Width.CompareTo(y.Width)
        Else
            Return 0
        End If
    End Function
End Class

注釈

型のカスタマイズされた並べ替え順序の比較を提供するには、このメソッドを実装します T

null参照型との比較は許可され、例外は生成されません。 null 参照は、null ではない参照よりも小さいと見なされます。

適用対象

こちらもご覧ください