Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As the title says: do i need to override the == operator? how about the .Equals() method? Anything i'm missing?

share|improve this question

4 Answers

up vote 19 down vote accepted

An example from msdn

public struct Complex 
{
   double re, im;
   public override bool Equals(Object obj) 
   {
      return obj is Complex && this == (Complex)obj;
   }
   public override int GetHashCode() 
   {
      return re.GetHashCode() ^ im.GetHashCode();
   }
   public static bool operator ==(Complex x, Complex y) 
   {
      return x.re == y.re && x.im == y.im;
   }
   public static bool operator !=(Complex x, Complex y) 
   {
      return !(x == y);
   }
}
share|improve this answer
2  
The original link here would be beneficial – Román Jul 12 '11 at 8:49
6  
For the curious: msdn.microsoft.com/en-us/library/336aedhh(v=VS.71).aspx – Mike Apr 20 '12 at 20:50
I wonder if it woldn't be better for performance to use Complex other = obj as Complex and then check if other == null instead of using is and then a cast... – Clément Nov 9 '12 at 17:38
1  
@Clement: You can't do that for a struct; the result can't be null. You'd get a compile error. – Matthew Watson Nov 26 '12 at 10:04
You're right, my bad. – Clément Nov 26 '12 at 11:37

You should also implement IEquatable<T>. Here is an excerpt from Framework Design Guidelines:

DO implement IEquatable on value types. The Object.Equals method on value types causes boxing, and its default implementation is not very effcient because it uses refection. IEquatable.Equals can offer much better performance and can be implemented so that it does not cause boxing.

public struct Int32 : IEquatable<Int32> {
    public bool Equals(Int32 other){ ... }
}

DO follow the same guidelines as for overriding Object.Equals when implementing IEquatable.Equals. See section 8.7.1 for detailed guidelines on overriding Object.Equals

share|improve this answer
So this is only used on value types? (not reference?) – UpTheCreek Oct 5 '09 at 8:10
Because reference types do not need to be boxed when passed as object, ergo, IEquatable<T> would not provide any benefit. Value types are usually copied fully onto the stack (or into the outer types layout), so to get an object reference to it, and correctly handle the lifetime of the object, it needs to be boxed (wrapped with a special type) and copied to the heap; only then the reference to the heap object can be passed to a function like Object.Equals. – gimpf Apr 8 at 15:22

Yes,

== , != , Equals() and don't forget to ensure that GetHashCode() is consistent too.

share|improve this answer

The basic difference among the two is that the == operator is static, i.e. the appropriate method to invoke is determined at compile time, while the Equals method is invoked dinamically on an instance.
Defining both is probably the best thing to do, even if this matters less in the case of structs, since structs cannot be extended (a struct can't inherit from another).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.