C# 相等比较失败
C# equality comparison fails
我在以下 class 中通过 IEquatable<>
进行相等比较时遇到问题 我写道:
public class Bead: IEquatable<Bead>
{
public string Name { get; set; }
public Point2d Location { get; private set; }
public void SetLocation(Point2d newLocation)
{
Location = newLocation;
}
#region equality comparison
/// <summary>
/// Equality comparisons
/// </summary>
/// <param name="other"></param>
/// <returns></returns>
public override bool Equals(object other)
{
if (!(other is Bead)) return false;
return Equals((Bead)other); // Calls method below
}
public bool Equals(Bead other) // Implements IEquatable<Point2d>
{
return Location == other.Location && Name == other.Name;
}
public override int GetHashCode()
{
return this.Location.GetHashCode() * 67 + Name.GetHashCode(); // 67 = some prime number
}
public static bool operator ==(Bead a1, Bead a2)
{
if (a1 == null && a2 == null) return true;
if (a1 == null || a2 == null) return false;
return a1.Equals(a2);
}
public static bool operator !=(Bead a1, Bead a2)
{
if (a1 == null || a2 == null) return true;
if (a1 == null && a2 == null) return false;
return !a1.Equals(a2);
}
#endregion
}
An unhandled exception of type 'System.WhosebugException' occurred in PolymerMotionSimulation.exe
我该如何解决这个问题?
您的 ==
运算符调用自身,导致无限递归。要检查对象是否为空引用,最好使用 is null
或 ReferenceEquals(a1, null):
public static bool operator ==(Bead a1, Bead a2)
{
if (a1 is null && a2 is null) return true;
if (a1 is null || a2 is null) return false;
return a1.Equals(a2);
}
与 !=
相似。
或:
public static bool operator ==(Bead a1, Bead a2)
{
if (ReferenceEquals(a1, null) && ReferenceEquals(a2, null)) return true;
if (ReferenceEquals(a1, null) || ReferenceEquals(a2, null)) return false;
return a1.Equals(a2);
}
我在以下 class 中通过 IEquatable<>
进行相等比较时遇到问题 我写道:
public class Bead: IEquatable<Bead>
{
public string Name { get; set; }
public Point2d Location { get; private set; }
public void SetLocation(Point2d newLocation)
{
Location = newLocation;
}
#region equality comparison
/// <summary>
/// Equality comparisons
/// </summary>
/// <param name="other"></param>
/// <returns></returns>
public override bool Equals(object other)
{
if (!(other is Bead)) return false;
return Equals((Bead)other); // Calls method below
}
public bool Equals(Bead other) // Implements IEquatable<Point2d>
{
return Location == other.Location && Name == other.Name;
}
public override int GetHashCode()
{
return this.Location.GetHashCode() * 67 + Name.GetHashCode(); // 67 = some prime number
}
public static bool operator ==(Bead a1, Bead a2)
{
if (a1 == null && a2 == null) return true;
if (a1 == null || a2 == null) return false;
return a1.Equals(a2);
}
public static bool operator !=(Bead a1, Bead a2)
{
if (a1 == null || a2 == null) return true;
if (a1 == null && a2 == null) return false;
return !a1.Equals(a2);
}
#endregion
}
An unhandled exception of type 'System.WhosebugException' occurred in PolymerMotionSimulation.exe
我该如何解决这个问题?
您的 ==
运算符调用自身,导致无限递归。要检查对象是否为空引用,最好使用 is null
或 ReferenceEquals(a1, null):
public static bool operator ==(Bead a1, Bead a2)
{
if (a1 is null && a2 is null) return true;
if (a1 is null || a2 is null) return false;
return a1.Equals(a2);
}
与 !=
相似。
或:
public static bool operator ==(Bead a1, Bead a2)
{
if (ReferenceEquals(a1, null) && ReferenceEquals(a2, null)) return true;
if (ReferenceEquals(a1, null) || ReferenceEquals(a2, null)) return false;
return a1.Equals(a2);
}