vote up 10 vote down star
4

So, when I was a comparitive novice to the novice I am right now, I used to think that these two things were syntactic sugar for each other, ie. that using one over the other was simply a personal preference. Over time, I'm come to find that these two are not the same thing, even in a default implementation (see this and this). To further confuse the matter, each can be overriden/overloaded seperately to have completely different meanings.

Is this a good thing, what are the differences, and when/why should you use one over the other?

flag

5 Answers

vote up 10 vote down check

MSDN has clear and solid descriptions of both things.

object.Equals method

operator ==

Overloadable Operators

Guidelines for Overriding Equals() and Operator ==

Is this a good thing, what are the differences, and when/why should you use one over the other?

How can it be "good" or "bad" thing? One - method, another - operator. If reference equality is not sufficient, overload them, otherwise leave them as is. For primitive types they just work out of box.

link|flag
As someone getting into generics the differences can be vast when you are calling them on any type T blindly. – Matthew Scharley Sep 22 '08 at 0:26
1  
"blindly" is a bad practice for anything. if you know the answer on your question, why asking? – aku Sep 22 '08 at 0:28
Even if I did know a concrete answer (which I don't), perhaps for the same reason people ask questions and answer themself? Also, how can you do anything else for a generic type T? If you start doing things like if (typeof(T) == typeof(int)), what's the point? – Matthew Scharley Sep 22 '08 at 0:31
As for my indignation, I encountered to many situations when I provide throughout answer, but person just want to show off and repeat my answer with some minor additions, thus wasting my time. If you really don't know the answer, I apologize. – aku Sep 22 '08 at 0:58
"Also, how can you do anything else" Sorry but I don't quite understand what you mean. Maybe you can ask concrete question about generics? – aku Sep 22 '08 at 0:59
show 3 more comments
vote up 6 vote down
string x = "hello";
string y = String.Copy(x);
string z = "hello";

To test if x points to the same object as y:

(object)x == (object)y  // false
x.ReferenceEquals(y)    // false
x.ReferenceEquals(z)    // true (because x and z are both constants they
                        //       will point to the same location in memory)

To test if x has the same string value as y:

x == y        // true
x == z        // true
x.Equals(y)   // true
y == "hello"  // true

Note that this is different to Java. In Java the == operator is not overloaded so a common mistake is:

y == "hello"  // false (y is not the same object as "hello")

For string comparison in Java you need to always use .equals()

y.equals("hello")  // true
link|flag
vote up 5 vote down

http://msdn.microsoft.com/en-us/library/ms173147.aspx
has some good info on the differences

link|flag
vote up 0 vote down

My understanding of the uses of both was this: use == for conceptual equality (in context, do these two arguments mean the same thing?), and .Equals for concrete equality (are these two arguments in actual fact the exact same object?).

Edit: Kevin Sheffield's linked article does a better job of explaining value vs. reference equality…

link|flag
vote up 0 vote down

You may want to use .Equals or Object.ReferenceEquals liberally as someone may come along at a later time and overload the == operator for your class.

link|flag

Your Answer

Get an OpenID
or

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