更新:2007 年 11 月

错误消息

“class”定义运算符 == 或运算符 !=,但不重写 Object.GetHashCode()

编译器检测到用户定义的相等运算符或不相等运算符,但没有检测到 GetHashCode 函数的重写。用户定义的相等运算符或不相等运算符意味着也要重写 GetHashCode 函数。

下面的示例生成 CS0661:

 复制代码
// CS0661.cs
// compile with: /W:3
class Test   // CS0661
{
   public static bool operator == (object o, Test t)
   {
      return true;
   }

   public static bool operator != (object o, Test t)
   {
      return true;
   }

   public override bool Equals(object o)
   {
      return true;
   }

   // uncomment the GetHashCode function to resolve
   // public override int GetHashCode()
   // {
   //    return 0;
   // }

   public static void Main()
   {
   }
}