Possible Duplicates:
String comparison and String interning in Java
What is the difference between .Equals and ==
Just a simple question about comparing strings. Why should i be using string.equals(string2) and not string==string2 ? Thank you
Just a simple question about comparing strings. Why should i be using string.equals(string2) and not string==string2 ? Thank you |
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
|
|||||||||||||
|
|
string==string2 is physical comparison and compares the references to objects. equals is logical comparison and the equality can be defined in equals() method which objects inherit this from Object (Parent of all types) |
|||
|
|
x == y"works" if bothxanyrefer to the same interned string (are the same object). That is -- don't rely on it. Useequalsfor a string value equality test. – user166390 Jun 12 '11 at 21:41