vote up 6 vote down star
3

Why use one over the other?

flag

54% accept rate

11 Answers

vote up 17 vote down check

== is the identity test. It will return true if the two objects being tested are in fact the same object. equals() performs an equality test, and will return true if the two objects consider themselves equal.

Identity testing is faster, so you can use it when there's no need for more expensive equality tests. For example, comparing against null or the empty string.

It's possible to overload either of these to provide different behavior -- like identity testing for equals() --, but for the sake of anybody reading your code, please don't.


Pointed out below: some value types like DateTime provide overloads for the == operator that give it equality semantics. So the exact behavior will depend on the types of the objects you are comparing.


See also:

link|flag
How would you go about overloading ==? Out of curiosity. – Brettski Sep 27 '08 at 21:42
@Brett: no idea, but the MSDN blog says it's possible. – John Millikin Sep 27 '08 at 21:43
Actually, FxCop forces you to override Equals if you are also overriding operator ==, since they should be basically the same, in contrast to ReferenceEquals. – OregonGhost Sep 27 '08 at 21:43
How can you say that you should never override Equals? If your objects are Equal but created in different parts of the application (say the same row fetched twice from the db) you might well say they are the same. The main thing is that Equals should correspond to the identity of the object – Oskar Sep 27 '08 at 22:50
== is overloaded the same way as any other operator. As for overloading .Equals(), you should if you need some measure of value equality based on value, not reference. And you should overload == if shouldn't be comparing by references (ie. value types) – Matthew Scharley Sep 28 '08 at 0:14
show 1 more comment
vote up 0 vote down

I have seen Object.ReferenceEquals() used in cases where one wants to know if two references refer to the same object

link|flag
vote up 0 vote down

This is an exact duplicate of this question.

link|flag
vote up 6 vote down

@John Millikin:

Pointed out below: some value types like DateTime provide overloads for the == operator >that give it equality semantics. So the exact behavior will depend on the types of the >objects you are comparing.

To elaborate:

DateTime is implemented as a struct. All structs are children of System.ValueType.

Since System.ValueType's children live on the stack, there is no reference pointer to the heap, and thus no way to do a reference check, you must compare objects by value only.

System.ValueType overrides .Equals() and == to use a reflection based equality check, it uses reflection to compare each fields value.

Because reflection is somewhat slow, if you implement your own struct, it is important to override .Equals() and add your own value checking code, as this will be much faster. Don't just call base.Equals();

link|flag
vote up 1 vote down

Everyone else pretty much has you covered, but I have one more word of advice. Every now and again, you will get someone who swears on his life (and those of his loved ones) that .Equals is more efficient/better/best-practice or some other dogmatic line. I can't speak to efficiency (well, OK, in certain circumstances I can), but I can speak to a big issue which will crop up: .Equals requires an object to exist. (Sounds stupid, but it throws people off.)

You can't do the following:

StringBuilder sb = null;
if (sb.Equals(null))
{
    // whatever
}

It seems obvious to me, and perhaps most people, that you will get a NullReferenceException. However, proponents of .Equals forget about that little factoid. Some are even "thrown" off (sorry, couldn't resist) when they see the NullRefs start to pop up.

(And years before the DailyWTF posting, I did actually work with someone who mandated that all equality checks be .Equals instead of ==. Even proving his inaccuracy didn't help. We just made damn sure to break all his other rules so that no reference returned from a method nor property was ever null, and it worked out in the end.)

link|flag
vote up 1 vote down

Another thing to take into consideration: the == operator may not be callable or may have different meaning if you access the object from another language. Usually, it's better to have an alternative that can be called by name.

link|flag
vote up 1 vote down

The example is because the class DateTime implements the IEquatable interface, which implements a "type-specific method for determining equality of instances." according to MSDN.

link|flag
vote up 2 vote down

So why does this evaluate to true?

DateTime date1 = new DateTime(2008,1,1);
DateTime date2 = new DateTime(2008,1,1);

date1==date2
link|flag
Hmm...good question. – Mike F Sep 27 '08 at 21:52
msdn.microsoft.com/en-us/library/… – Mike F Sep 27 '08 at 21:56
3  
DateTime is a value object, (Its as struct, not a class), therefore you can't do a reference equality on it. Structs automatically do value equality. – FlySwat Sep 27 '08 at 21:56
Thanks guys, all seems abit messy, but i guess it allows for flexibility. – Dan Sep 27 '08 at 21:56
you just have to know what is a struct and what is an object, and then it makes more sense – Andrew Sep 27 '08 at 21:57
vote up 0 vote down

According to MSDN:

In C#, there are two different kinds of equality: reference equality (also known as identity) and value equality. Value equality is the generally understood meaning of equality: it means that two objects contain the same values. For example, two integers with the value of 2 have value equality. Reference equality means that there are not two objects to compare. Instead, there are two object references and both of them refer to the same object.

...

By default, the operator == tests for reference equality by determining whether two references indicate the same object.

link|flag
vote up 4 vote down

== is generally the "identity" equals meaning "object a is in fact the exact same object in memory as object b".

equals() means that the objects logically equal (say, from a business point of view). So if you are comparing instances of a user-defined class, you would generally need to use and define equals() if you want things like a Hashtable to work properly.

If you had the proverbial Person class with properties "Name" and "Address" and you wanted to use this Person as a key into a Hashtable containing more information about them, you would need to implement equals() (and hash) so that you could create an instance of a Person and use it as a key into the Hashtable to get the information.

Using == alone, your new instance would not be the same.

link|flag
vote up 1 vote down

use equals if you want to express the contents of the objects compared should be equal. use == for primitive values or if you want to check that the objects being compared is one and the same object. For objects == checks whether the address pointer of the objects is the same.

link|flag

Your Answer

Get an OpenID
or

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