c# – 实现IComparable

当我试图从Jon Skeet的书C#深入调整清单3.4时,我收到以下错误消息…

The type ‘list_3_4.Dog’ cannot be used as type parameter ‘T’ in the generic type or method ‘list_3_4.Program.ComparetoDefault(T)’.
There is no implicit reference conversion from ‘list_3_4.Dog’ to ‘System.IComparable’.

这是我的代码……

using System;

namespace list_3_4
{
     class Program
     {
          static void Main(string[] args)
          {
               //string mystring;
               Dog d = new Dog("howie");

               Console.WriteLine(ComparetoDefault("x"));
               Console.WriteLine(ComparetoDefault(10));
               Console.WriteLine(ComparetoDefault(0));
               Console.WriteLine(ComparetoDefault(-10));              
               Console.WriteLine(ComparetoDefault(DateTime.MinValue));

               Console.WriteLine(ComparetoDefault(d));

               Console.ReadKey();
          }

          static int ComparetoDefault<T> (T value) where T: IComparable<T>
          {
               return value.Compareto(default(T));               
          }

     }

     public class Dog 
     {
          private string _name;

          public Dog(string name)
          {
               _name = name;
          }
         }
}

如何添加像“狗”这样的引用类型来使用Jon Skeets代码列表???我知道Dog需要实现IComparable但我不知道怎么做!

解决方法

您可以通过说明需要类型T来定义方法,类型T是IComparable< T>. :
where T: IComparable<T>

但Dog没有实现IComparable< Dog>

你需要这样做:

public class Dog : IComparable<Dog>
{
 //this will allow you to do a quick name comparison
 public string Name { get; set;}
 public int Compareto(Dog other)
 {//compare dogs by name
        return this._name.Compareto(other.Name);
 }
}

注意:对于引用类型,default(T)将返回null,因此您应该在某处执行null检查.阅读约default on msdn.

相关文章

在要实现单例模式的类当中添加如下代码:实例化的时候:frmC...
1、如果制作圆角窗体,窗体先继承DOTNETBAR的:public parti...
根据网上资料,自己很粗略的实现了一个winform搜索提示,但是...
近期在做DSOFramer这个控件,打算自己弄一个自定义控件来封装...
今天玩了一把WMI,查询了一下电脑的硬件信息,感觉很多代码都...
最近在研究WinWordControl这个控件,因为上级要求在系统里,...