IComparable接口

时间:2011-03-11 09:06:48

标签: c#

using System;
using System.Collections;

public class Temperature : IComparable 
{
    // The temperature value
    protected double temperatureF;

    public int CompareTo(object obj) {
        Temperature otherTemperature = obj as Temperature;
        if (otherTemperature != null) 
            return this.temperatureF.CompareTo(otherTemperature.temperatureF);
        else
           throw new ArgumentException("Object is not a Temperature");
    }

    public double Fahrenheit 
    {
        get 
        {
            return this.temperatureF;
        }
        set {
            this.temperatureF = value;
        }
    }

    public double Celsius 
    {
        get 
        {
            return (this.temperatureF - 32) * (5.0/9);
        }
        set 
        {
            this.temperatureF = (value * 9.0/5) + 32;
        }
    }
}

public class CompareTemperatures
{
   public static void Main()
   {
      ArrayList temperatures = new ArrayList();
      // Initialize random number generator.
      Random rnd = new Random();

      // Generate 10 temperatures between 0 and 100 randomly.
      for (int ctr = 1; ctr <= 10; ctr++)
      {
         int degrees = rnd.Next(0, 100);
         Temperature temp = new Temperature();
         temp.Fahrenheit = degrees;
         temperatures.Add(temp);   
      }

      // Sort ArrayList.
      temperatures.Sort();

      foreach (Temperature temp in temperatures)
         Console.WriteLine(temp.Fahrenheit);

   }
}

这是我从MSDN获取的一个例子。在上面的例子中,在compareTo中( this.TemperatureF.CompareTo(otherTemperature.temperatureF)被使用 所以如何通过arraylist的sort函数()来完成比较。 谁为比较提供了另一个参考对象(this)?

3 个答案:

答案 0 :(得分:1)

这取决于使用IComparable的情况,但在排序列表的示例中,其他引用是您要与之比较的列表中的其他项。您所比较的列表中的确切对象将取决于排序算法。

此外,我更喜欢通用IComparable<T>而不是普通的IComparable

答案 1 :(得分:1)

“compareTo”用于比较两个这样的对象:this.compareTo(anOtherObject)
所以,这是第一个对象,而第二个是对象 为了对数组进行排序,框架调用此方法将当前对象(this)与下一个对象进行比较。

答案 2 :(得分:0)

CompareTo(object other)将通过所使用的排序算法的实现来调用。在您的情况下,ArrayList.Sort()使用的排序算法。 Sort()

other是ArrayList中的一个项目。

查看您获得示例的文章中的Remarks部分