如何进入接口方法(Equals)

时间:2013-07-26 16:17:17

标签: c# visual-studio-2010 debugging interface iequatable

我已经实现了iEquatable接口:

LineItem : IEquatable<LineItem>

但现在我想通过逐步调试我的Equals(...)方法。但即使在调试模式下,踩入也不会进入它(即F11),并且在方法中放置一个断点也不会让我进入它。我该怎么调试呢?

不是它应该是相关的,但这是我的Equals方法:

public bool Equals(LineItem other)
            {
                List<bool> individuals = new List<bool>();

                individuals.Add(DateTime.Equals(Expiry, other.Expiry));
                individuals.Add(Code == other.Code);
                individuals.Add(Type == other.Type);
                individuals.Add(Class == other.Class);

                Func<object, object, bool> Compare = delegate(object A, object B)
                {
                    if (A == DBNull.Value || B == DBNull.Value)
                        return A == B;
                    else
                        return (double)A == (double)B;
                };

                individuals.Add(Compare(Strike, other.Strike));
                individuals.Add(Compare(Future, other.Future));
                individuals.Add(Compare(Premium, other.Premium));
                individuals.Add(Compare(Volatility, other.Volatility));
                individuals.Add(Compare(Volume, other.Volume));
                individuals.Add(Compare(OpenInterest, other.OpenInterest));
                individuals.Add(Compare(Delta, other.Delta));

                return !individuals.Contains(false);
            }

修改 我现在正在代码中的其他地方调用这个方法:

if(!fo.Future.Equals(li))...

但仍然不允许我调试它。

2 个答案:

答案 0 :(得分:15)

您需要向后退一步,并首先学习如何正确实现相等方法。 C#被设计成一个“成功的坑”;也就是说,你应该自然地“陷入”以正确的方式做事。不幸的是,平等并不是C#的“成功之处”;语言设计师未能在第一时间轻松做到这一点。

这是我在覆盖相等时使用的模式。

首先,首先编写私有静态方法一切正确。其他一切都将使用这种方法。通过早期处理(1)引用相等和(2)空检查来启动方法。

private static MyEquality(Foo x, Foo y)
{
  if (ReferenceEquals(x, y)) return true;
  // We now know that they are not BOTH null.  If one is null
  // and the other isn't then they are not equal.
  if (ReferenceEquals(x, null)) return false;
  if (ReferenceEquals(y, null)) return false;
  // Now we know that they are both non-null and not reference equal.
  ... check for value equality here ...
}

好的,现在我们已经拥有了,我们可以用它来实现其他一切。

public override bool Equals(object y)
{
  return MyEquality(this, y as Foo);
}
public override int GetHashcode()
{
  // Implement GetHashcode to follow the Prime Directive Of GetHashcode:
  // Thou shalt implement GetHashcode such that if x.Equals(y) is true then 
  // x.GetHashcode() == y.GetHashcode() is always also true.
}
public bool Equals(Foo y)
{
  return MyEquality(this, y);
}

正确实现IEquatable<T>.Equals必要。您还应该考虑覆盖==运算符以保持一致:

public static bool operator ==(Foo x, Foo y)
{
    return MyEquality(x, y);
}
public static bool operator !=(Foo x, Foo y)
{
    return !MyEquality(x, y);
}

现在,无论您是拨打object.Equals(foo, bar)foo.Equals(bar)还是foo == bar,都会有一致的行为。

答案 1 :(得分:4)

LineItem.Equals(a, b)是对Object.Equals(object, object)的静态方法调用;这不是你的方法。

如果您覆盖了a.Equals(object),则此实现会调用{{1}},但您没有覆盖它。