IComparable.CompareToとは? わかりやすく解説

IComparable.CompareTo メソッド

メモ : このメソッドは、.NET Framework version 2.0新しく追加されたものです。

現在のオブジェクトを同じ型の別のオブジェクト比較します。

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Function CompareTo ( _
    other As T _
) As Integer
Dim instance As IComparable(Of
 T)
Dim other As T
Dim returnValue As Integer

returnValue = instance.CompareTo(other)
int CompareTo (
    T other
)
int CompareTo (
    T other
)
int CompareTo (
    T other
)
function CompareTo (
    other : T
) : int

パラメータ

other

このオブジェクト比較するオブジェクト

戻り値
比較対象オブジェクト相対順序を示す 32 ビット符号付き整数戻り値の意味次のとおりです。

意味

0 より小さい値

このオブジェクトother パラメータより小さいことを意味します

0

このオブジェクトother等しいことを意味します

0 より大きい

このオブジェクトother よりも大きいことを意味します

解説解説

このメソッド定義するだけなので、実際に使用する場合は、特定のクラスや値で実装する必要があります比較における "より小さい"、"等価"、および "より大きい" の意味は、個別実装によって異なります

定義により、すべてのオブジェクトnull 参照 (Visual Basic では Nothing) よりも大きく、また 2 つnull 参照互いに等しくなります

実装時の注意 オブジェクト A、B、C について、次の条件満たされる必要がありますA.CompareTo(A) は 0 を返す必要がありますA.CompareTo(B) が 0 を返す場合は、B.CompareTo(A) も 0 を返す必要がありますA.CompareTo(B) が 0 を返しB.CompareTo(C) が 0 を返す場合は、A.CompareTo(C) も 0 を返す必要がありますA.CompareTo(B) が 0 以外の値を返す場合B.CompareTo(A)反対符号の値を返す必要がありますA.CompareTo(B) が 0 でない値 x返しB.CompareTo(C)x と同じ符号の値 y返す場合A.CompareTo(C)x および y と同じ符号の値を返す必要があります

呼び出し時の注意 CompareTo メソッド使用してクラスインスタンス順序決定します

使用例使用例

簡単な Temperature オブジェクトに IComparable を実装するコード例次に示します。この例では、Temperature オブジェクトキー保持する文字列の SortedList コレクション作成し気温文字列から成る複数ペアランダムにリスト追加しますSortedList コレクションでは、IComparable の実装使用してリストのエントリを気温昇順並べ替えています。

Imports System
Imports System.Collections.Generic

Public Class Temperature
    Implements IComparable(Of Temperature)

    ' Implement the generic CompareTo method. In the Implements statement
,
    ' specify the Temperature class for the type parameter of the
    ' generic IComparable interface. Use that type for the parameter
    ' of the CompareTo method.
    '
    Public Overloads Function
 CompareTo(ByVal other As Temperature) As
 Integer _
        Implements IComparable(Of Temperature).CompareTo

        ' The temperature comparison depends on the comparison of the
        ' the underlying Double values. Because the CompareTo method
 is
        ' strongly typed, it is not necessary to test for the correct
        ' object type.
        Return m_value.CompareTo(other.m_value)
    End Function

    ' The underlying temperature value.
    Protected m_value As Double
 = 0.0

    Public ReadOnly Property
 Celsius() As Double
        Get
            Return m_value - 273.15
        End Get
    End Property

    Public Property Kelvin() As
 Double
        Get
            Return m_value
        End Get
        Set(ByVal Value As
 Double)
            If value < 0.0 Then 
                Throw New ArgumentException("Temperature
 cannot be less than absolute zero.")
            Else
                m_value = Value
            End If
        End Set
    End Property

    Public Sub New(ByVal
 degreesKelvin As Double)
        Me.Kelvin = degreesKelvin 
    End Sub
End Class

Public Class Example
    Public Shared Sub Main()
        Dim temps As New
 SortedList(Of Temperature, String)

        ' Add entries to the sorted list, out of order.
        temps.Add(New Temperature(2017.15), "Boiling
 point of Lead")
        temps.Add(New Temperature(0), "Absolute
 zero")
        temps.Add(New Temperature(273.15), "Freezing
 point of water")
        temps.Add(New Temperature(5100.15), "Boiling
 point of Carbon")
        temps.Add(New Temperature(373.15), "Boiling
 point of water")
        temps.Add(New Temperature(600.65), "Melting
 point of Lead")

        For Each kvp As
 KeyValuePair(Of Temperature, String) In
 temps
            Console.WriteLine("{0} is {1} degrees Celsius.",
 kvp.Value, kvp.Key.Celsius)
        Next
    End Sub
End Class

' This code example produces the following output:
'
'Absolute zero is -273.15 degrees Celsius.
'Freezing point of water is 0 degrees Celsius.
'Boiling point of water is 100 degrees Celsius.
'Melting point of Lead is 327.5 degrees Celsius.
'Boiling point of Lead is 1744 degrees Celsius.
'Boiling point of Carbon is 4827 degrees Celsius.
'
using System;
using System.Collections.Generic;

public class Temperature : IComparable<Temperature>
{
    // Implement the CompareTo method. For the parameter type, Use 
    // the type specified for the type parameter of the generic 
    // IComparable interface. 
    //
    public int CompareTo(Temperature other)
    {
        // The temperature comparison depends on the comparison of the
        // the underlying Double values. Because the CompareTo method
 is
        // strongly typed, it is not necessary to test for the correct
        // object type.
        return m_value.CompareTo(other.m_value);
    }

    // The underlying temperature value.
    protected double m_value = 0.0;

    public double Celsius    
    {
        get
        {
            return m_value - 273.15;
        }
    }

    public double Kelvin    
    {
        get
        {
            return m_value;
        }
        set
        {
            if (value < 0.0)
            {
                throw new ArgumentException("Temperature
 cannot be less than absolute zero.");
            }
            else
            {
                m_value = value;
            }
        }
    }

    public Temperature(double degreesKelvin)
    {
        this.Kelvin = degreesKelvin;
    }
}

public class Example
{
    public static void Main()
    {
        SortedList<Temperature, string> temps = 
            new SortedList<Temperature, string>();

        // Add entries to the sorted list, out of order.
        temps.Add(new Temperature(2017.15), "Boiling point
 of Lead");
        temps.Add(new Temperature(0), "Absolute zero");
        temps.Add(new Temperature(273.15), "Freezing point
 of water");
        temps.Add(new Temperature(5100.15), "Boiling point
 of Carbon");
        temps.Add(new Temperature(373.15), "Boiling point
 of water");
        temps.Add(new Temperature(600.65), "Melting point
 of Lead");

        foreach( KeyValuePair<Temperature, string>
 kvp in temps )
        {
            Console.WriteLine("{0} is {1} degrees Celsius.", kvp.Value,
 kvp.Key.Celsius);
        }
    }
}

/* This code example produces the following output:

Absolute zero is -273.15 degrees Celsius.
Freezing point of water is 0 degrees Celsius.
Boiling point of water is 100 degrees Celsius.
Melting point of Lead is 327.5 degrees Celsius.
Boiling point of Lead is 1744 degrees Celsius.
Boiling point of Carbon is 4827 degrees Celsius.

*/
#using <System.dll>

using namespace System;
using namespace System::Collections::Generic;

public ref class Temperature: public
 IComparable<Temperature^> {

protected:
   // The value holder
   Double m_value;

public:
   // Implement the CompareTo method. For the parameter type, Use 
   // the type specified for the type parameter of the generic 
   // IComparable interface. 
   //
   virtual Int32 CompareTo( Temperature^ other ) {

      // The temperature comparison depends on the comparison of the
      // the underlying Double values. Because the CompareTo method
 is
      // strongly typed, it is not necessary to test for the correct
      // object type.
      return m_value.CompareTo( other->m_value );
   }

   property Double Celsius {
      Double get() {
         return m_value + 273.15;
      }
   }

   property Double Kelvin {
      Double get() {
         return m_value;
      }
      void set( Double value ) {
         if (value < 0)
            throw gcnew ArgumentException("Temperature cannot be less than absolute
 zero.");
         else
            m_value = value;
      }
   }

   Temperature(Double degreesKelvin) {
      this->Kelvin = degreesKelvin;
   }
};

int main() {
   SortedList<Temperature^, String^>^ temps = 
      gcnew SortedList<Temperature^, String^>();

   // Add entries to the sorted list, out of order.
   temps->Add(gcnew Temperature(2017.15), "Boiling point of Lead");
   temps->Add(gcnew Temperature(0), "Absolute zero");
   temps->Add(gcnew Temperature(273.15), "Freezing point of water");
   temps->Add(gcnew Temperature(5100.15), "Boiling point of Carbon");
   temps->Add(gcnew Temperature(373.15), "Boiling point of water");
   temps->Add(gcnew Temperature(600.65), "Melting point of Lead");

   for each( KeyValuePair<Temperature^, String^>^ kvp in
 temps )
   {
      Console::WriteLine("{0} is {1} degrees Celsius.", kvp->Value,
 kvp->Key->Celsius);
   }
}

/* This code example productes the following output:

Absolute zero is 273.15 degrees Celsius.
Freezing point of water is 546.3 degrees Celsius.
Boiling point of water is 646.3 degrees Celsius.
Melting point of Lead is 873.8 degrees Celsius.
Boiling point of Lead is 2290.3 degrees Celsius.
Boiling point of Carbon is 5373.3 degrees Celsius.

*/
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

IComparable.CompareTo メソッド

現在のインスタンスを同じ型の別のオブジェクト比較します。

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

例外例外
例外種類条件

ArgumentException

obj の型がこのインスタンスの型と異なります

解説解説

このメソッド定義するだけなので、実際に使用する場合は、特定のクラスや値で実装する必要があります比較における "より小さい"、"等価"、および "より大きい" の意味は、個別実装によって異なります

定義により、すべてのオブジェクトnull 参照 (Visual Basic では Nothing) よりも大きく、また 2 つnull 参照互いに等しくなります

obj パラメータは、このインターフェイス実装するクラスまたは値型と同じ型である必要がありますそれ以外場合は、ArgumentExceptionスローさます。

実装時の注意 オブジェクト A、B、C について、次の条件満たされる必要がありますA.CompareTo(A) は 0 を返す必要がありますA.CompareTo(B) が 0 を返す場合は、B.CompareTo(A) も 0 を返す必要がありますA.CompareTo(B) が 0 を返しB.CompareTo(C) が 0 を返す場合は、A.CompareTo(C) も 0 を返す必要がありますA.CompareTo(B) が 0 以外の値を返す場合B.CompareTo(A)反対符号の値を返す必要がありますA.CompareTo(B) が 0 でない値 x返しB.CompareTo(C)x と同じ符号の値 y返す場合A.CompareTo(C)x および y と同じ符号の値を返す必要があります

呼び出し時の注意 CompareTo メソッド使用してクラスインスタンス順序決定します

使用例使用例

CompareTo使用して、IComparable を実装している Temperature オブジェクト別のオブジェクト比較する方法については、次のコード例参照してください

Public Class Temperature
    Implements IComparable

    Public Overloads Function
 CompareTo(ByVal obj As Object)
 As Integer _
        Implements IComparable.CompareTo

        If TypeOf obj Is
 Temperature Then
            Dim temp As Temperature = CType(obj,
 Temperature)

            Return m_value.CompareTo(temp.m_value)
        End If

        Throw New ArgumentException("object
 is not a Temperature")
    End Function

    ' The value holder
    Protected m_value As Integer

    Public Property Value() As
 Integer
        Get
            Return m_value
        End Get
        Set(ByVal Value As
 Integer)
            m_value = Value
        End Set
    End Property

    Public Property Celsius() As
 Integer
        Get
            Return (m_value - 32) / 2
        End Get
        Set(ByVal Value As
 Integer)
            m_value = Value * 2 + 32
        End Set
    End Property
End Class
public class Temperature : IComparable {
    /// <summary>
    /// IComparable.CompareTo implementation.
    /// </summary>
    public int CompareTo(object obj) {
        if(obj is Temperature) {
            Temperature temp = (Temperature) obj;

            return m_value.CompareTo(temp.m_value);
        }
        
        throw new ArgumentException("object is not a Temperature");
    
    }

    // The value holder
    protected int m_value;

    public int Value {
        get {
            return m_value;
        }
        set {
            m_value = value;
        }
    }

    public int Celsius {
        get {
            return (m_value-32)/2;
        }
        set {
            m_value = value*2+32;
        }
    }
}
public ref class Temperature: public
 IComparable {
   /// <summary>
   /// IComparable.CompareTo implementation.
   /// </summary>
protected:
   // The value holder
   Double m_value;

public:
   virtual Int32 CompareTo( Object^ obj ) {
      if ( obj->GetType() == Temperature::typeid ) {
         Temperature^ temp = dynamic_cast<Temperature^>(obj);

         return m_value.CompareTo( temp->m_value );
      }

      throw gcnew ArgumentException(  "object is not a Temperature" );
   }

   property Double Value {
      Double get() {
         return m_value;
      }
      void set( Double value ) {
         m_value = value;
      }
   }

   property Double Celsius  {
      Double get() {
         return (m_value - 32) / 1.8;
      }
      void set( Double value ) {
         m_value = value * 1.8 + 32;
      }
   }
};
public class Temperature implements IComparable
{
    /// <summary>
    /// IComparable.CompareTo implementation.
    /// </summary>
    public int CompareTo(Object obj)
    {
        if (obj instanceof Temperature) {
            Temperature temp = (Temperature)obj;
            return ((Int32)mValue).CompareTo(temp.mValue);
        }
        throw new ArgumentException("object is not a Temperature");
    } //CompareTo

    // The value holder
    protected int mValue;

    /** @property
     */
    public int get_Value()
    {
        return mValue;
    }//get_Value

    /** @property
     */
    public void set_Value(int
 value)
    {
        mValue = value;
    }//set_Value

    /** @property
     */
    public int get_Celsius()
    {
        return (mValue - 32) / 2;
    }//get_Celsius

    /** @property 
     */
    public void set_Celsius(int
 value)
    {
        mValue = value * 2 + 32;
    }//set_Celsius
} //Temperature
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「IComparable.CompareTo」の関連用語

IComparable.CompareToのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



IComparable.CompareToのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS