On the one hand;
String first = "thing";
String second = "thing";
if(first == second)
System.out.print( "Same things" ); //this is printed
On the other hand;
String first = "thing";
String second = new String("thing");
if(first == second)
{
System.out.print("Same things");
}
else
{
System.out.print("Different things"); //This is printed
}
I know that " == " operator is using for the comparison of references of two objects, but in the first example, I compared the values of objects directly. I know this kind of comparison is inexact. But why do I get the message in first example? Is it an indicator that references are the same, or is it occured by a coincidence?
firstandsecondboth point to"thing", which is obviously the same string. In the second example,secondpoints to a newStringobject that contains the text"thing". When using==, the contents of theStringare not considered, so the fact that bothStrings contain the text"thing"is irrelevant. – Shakedown Nov 7 '11 at 20:50