Why use one over the other?
|
3
|
|
|
|
|
|
== is the identity test. It will return true if the two objects being tested are in fact the same object. Identity testing is faster, so you can use it when there's no need for more expensive equality tests. For example, comparing against It's possible to overload either of these to provide different behavior -- like identity testing for Pointed out below: some value types like See also: |
||||||||||
|
|
|
I have seen Object.ReferenceEquals() used in cases where one wants to know if two references refer to the same object |
||
|
|
|
|
This is an exact duplicate of this question. |
||
|
|
|
|
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(); |
||
|
|
|
|
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:
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.) |
||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||
|
|
|
|
So why does this evaluate to true?
|
||||||||||||
|
|
|
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. |
||
|
|
|
|
== 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. |
||
|
|
|
|
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. |
||
|
|
