The following statement appears in Section 3.10.5. String Literals of the Java Language Specification:
A string literal always refers to the same instance of class String. This is because string literals - or, more generally, strings that are the values of constant expressions (ยง15.28) - are "interned" so as to share unique instances, using the method String.intern.
I am using Java JDK 7 and Eclipse indigo.
and my test program is as follows:
public class Main {
public static void main(String[] args) {
String s1 = "string";
String s2 = "string";
System.out.print(s1 == s2); // true
System.out.print(" , " + "string" == "string"); // false
}
}
==compares objects. If you want to compare their contents, useequalsorcompareTo. – Daniel Kamil Kozar Mar 9 '12 at 11:39equals(...)to compare strings. I'm asking why specifically in this case my program does not exhibit behaviour which matches the JLS. – user63904 Mar 9 '12 at 11:41