I know there are a lot of ways to compare VALUE and REFERENCES in C#, but I'm still a bit confused about what type performs what when you try to compare either VALUE or REFERENCE.

String examples:

string str = "hello";
string str2 = "hello";

if (str == str2)
{
   Console.WriteLine("Something");
} // Is this a comparison of value?

if (str.Equals(str2))
{
   Console.WriteLine("Something");
} // Is this a comparison of value?

string.ReferenceEquals(str, str2); // Comparison of reference (True)

Console.WriteLine((object)str1 == (object)str2); // Comparison of reference (True)

Thank you!

link|improve this question

3  
I believe strings are a particular case: when the compiler sees two times the same string, it makes only one in memory. So value OR reference doesn't matter in this case. – Baboon Oct 19 '11 at 12:41
The string class overloads operator==(), Equals and GetHashCode. Makes it act like a value type. – Hans Passant Oct 19 '11 at 12:54
string are a special kind of reference type. Better use something else (StringBuilder) to study this. – Henk Holterman Oct 19 '11 at 12:56
@Baboon: right conclusion, wrong reasoning. Two strings at different locations with the same content will be equal. – Henk Holterman Oct 19 '11 at 13:30
That's what i meant, it will always return true, whether you compare value or reference. – Baboon Oct 19 '11 at 14:09
feedback

4 Answers

up vote 3 down vote accepted

Equals and == will compare by reference by default if they're not overriden / overloaded in a subclass. ReferenceEquals will always compare by reference.

Strings are a confusing data type to use for experimenting with this, because they overload == to implement value equality; also, since they're immutable, C# will generally reuse the same instance for the same literal string. In your code, str and str2 will be the same object.

link|improve this answer
1  
== is needs to be overloaded, not overridden. – CodeInChaos Oct 19 '11 at 12:49
feedback
  1. string.ReferenceEquals(str, str2);
    It obviously compares references.
  2. str.Equals(str2)
    Tries to compare references at first. Then it tries to compare by value.
  3. str == str2
    Does the same as Equals.

A good way to compare strings is to use string.Compare. If you want to ignore case, there is a parameter in place for that too.

link|improve this answer
feedback

@Inerdia is right with what he says but I'd like to point out the reason why the line string.ReferenceEquals(str, str2) returns true in your code example. Because you are defining both of the strings at compile time, the compiler can optimise the code so they can both point to the same instance of the string. Since strings are immutable the compiler knows it can do this even though String is a reference type. But If you change your code to dynamically generate one of the strings (as shown below) the compiler can't perform this optimisation. So in your code example if you change your code to:

string str = "hello";
string str2 = new StringBuilder().Append("he").Append("llo").ToString(); 

Then the string.ReferenceEquals(str, str2) line will now return false as this time the compiler cant know to re-use the same instance (reference of the string).

link|improve this answer
feedback

Excerpt from .net sources:

public bool Equals(string value)
{
  if (this == null)
    throw new NullReferenceException();
  else if (value == null)
    return false;
  else if (object.ReferenceEquals((object) this, (object) value))
    return true;
  else
    return string.EqualsHelper(this, value);
}

So in general it is comparision of references first and if they don't match, it compares values.

link|improve this answer
Which doesn't explain why ReferenceEquals() returns true too. – svick Oct 19 '11 at 12:46
I'm wondering myself, if there is any case, when ReferenceEquals returns false and EqualsHelper returns true. If there is no such case, in case strings are not equal, Equals method is wasting time trying to compare symbol by symbol. – Giedrius Oct 19 '11 at 12:50
Sure there is. Any time you create two strings with the same text and at least one of them is not interned. E.g. var s1 = new string(' ', 1); var s2 = new string(' ', 1);. Generally, the only interned strings are those that are compile-time constants. – svick Oct 19 '11 at 12:55
feedback

Your Answer

 
or
required, but never shown

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