1.IComparable接口

namespace System
{
    public interface IComparable
    {
         //Less than zero This instance is less than obj. 
         //Zero This instance is equal to obj. 
         //Greater than zero This instance is greater than obj.
         int CompareTo(object obj);
    }
}

2.一个example

namespace ConsoleApplicationCompare
{
    class Program
    {
        static void Main(string[] args)
        {
            Student s1 = new Student();
            Student s2 = new Student();

            s1.Name = "张三";
            s2.Name = "张三";

            s1.Score = 112;
            s2.Score = 211;

            Console.WriteLine(((IComparable)s1).CompareTo(s2));

            Console.ReadKey();
        }       
    }

    public class Student: IComparable
    {
        public string Name { set; get; }
        public int Score { set; get; }

        public int CompareTo(object obj)
        {
            int result = 0;

            Student o = (Student)obj;
            if (this.Score > o.Score)
                result = 1;
            else if (this.Score == o.Score)
                result = 0;
            else
                result = -1;

            return result;
        }

    }
}

 

3.IComparable<T>接口

namespace System
{
    // Type parameters: T: The type of objects to compare. That  is, you can use either the type you specified or any type that is less derived.
    public interface IComparable<in T>
    {
        int CompareTo(T other);
    }
}

 

4. example 第二版

namespace ConsoleApplicationCompareT
{
    class Program
    {
        static void Main(string[] args)
        {
            Student s1 = new Student();
            Student s2 = new Student();

            s1.Name = "张三";
            s2.Name = "张三";

            s1.Score = 112;
            s2.Score = 211;

            Console.WriteLine(s1.CompareTo(s2));

            Console.ReadKey();
        }
    }

    public class Student : IComparable<Student>
    {
        public string Name { set; get; }
        public int Score { set; get; }

        public int CompareTo(Student obj)
        {
            int result = 0;

            if (this.Score > obj.Score)
                result = 1;
            else if (this.Score == obj.Score)
                result = 0;
            else
                result = -1;

            return result;
        }

    }
}

 

5.结论

泛型接口更好用, it's obvious.

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-29
  • 2022-12-23
  • 2021-12-30
  • 2021-11-05
  • 2021-10-05
猜你喜欢
  • 2021-07-24
  • 2021-11-18
  • 2021-12-14
  • 2021-08-07
  • 2021-10-28
  • 2022-12-23
相关资源
相似解决方案