What is the difference between a.Equals(b) and a == b for value types, reference types, and strings? It would seem as though a == b works just fine for strings, but I'm trying to be sure to use good coding practices.
|
1
|
|||
|
|
|
From When should I use Equals and when should I use ==:
The result of this short sample program is
|
||
|
|
|
|
At a simple level, the difference is which method is called. The == method will attempt ot bind to operator== if defined for the types in question. If no == is found for value types it will do a value comparison and for reference types it will do a reference comparison. A .Equals call will do a virtual dispatch on the .Equals method. As to what the particular methods do, it's all in the code. Users can define / override these methods and do anything they please. Ideally this methods should be equivalent (sorry for the pun) and have the same output but it is not always the case. |
|||
|
|
|
Here is a great blog post about WHY the implementations are different. Essentially == is going to be bound at compile time using the types of the variables and .Equals is going to be dynamically bound at runtime. |
||
|
|
|
One significant difference between them is that
But you cannot do this without throwing a
|
|||
|
|
|
|
One simple way to help remember the difference is that The One implication is that |
||
|
|
|
|
" The default operation performed by " Here's how you could overload this operator for string types:
Note that this is different than Derived classes can also override and redefine As far as "best practices" go, it depends on your intent. |
||||
|
|
|
For strings you want to be careful of culture specific comparisons. The classic example is the german double S, that looks a bit like a b. This should match with "ss" but doesn't in a simple == comparison. For string comparisons that are culture sensitive use: String.Compare(expected, value, StringComparison....) == 0 ? with the StringComparison overload you need. |
||
|
|
|
|
By default, both You'll find people on both sides of the aisle as to the one to use. I prefer the operator rather than the function. If you're talking about strings, though, it's likely a better idea to use |
||
|
|
