使用英语阅读

通过


编译器警告(等级 3)CS0661

“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()  
   {  
   }  
}