用IComparable和IComparable<T>接口实现两个类对象的比较大小.

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.

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值