編譯器警告 (層級 3) CS0661
'class' 定義了運算子 == 或運算子 !=,但並沒有覆寫 Object.GetHashCode()
編譯器偵測到使用者定義的相等或不等比較運算子,但不覆寫 GetHashCode 函式。 使用者定義的相等或不等比較運算子暗示您也需要覆寫 GetHashCode 函式。
下列範例會產生 CS0661:
C#
// 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()
{
}
}