The code below should not print “Bye”, since == operator is used to compare references, but oddly enough, “Bye” is still printed. Why does this happen? I’m using Netbeans 6.9.1 as the IDE.
public class Test {
public static void main(String [] args) {
String test ="Hi";
if(test=="Hi"){
System.out.println("Bye");
}
}
}
This behavior is because of interning. The behavior is described in the docs for
String#intern(including why it’s showing up in your code even though you never callString#intern):So for example:
Output:
Walking through that:
s1is automatically interned, sos1ends up referring to a string in the pool.s2is also auto-interned, and sos2ends up pointing to the same instances1points to. This is fine even though the two bits of code may be completely unknown to each other, because Java’sStringinstances are immutable. You can’t change them. You can use methods liketoLowerCaseto get back a new string with changes, but the original you calledtoLowerCase(etc.) on remains unchanged. So they can safely be shared amongst unrelated code.Stringinstance via a runtime operation. Even though the new instance has the same sequence of characters as the interned one, it’s a separate instance. The runtime doesn’t intern dynamically-created strings automatically, because there’s a cost involved: The work of finding the string in the pool. (Whereas when compiling, the compiler can take that cost onto itself.) So now we have two instances, the ones1ands2point to, and the ones3points to. So the code shows thats3 != s1.s3. Perhaps it’s a large string we’re planning to hold onto for a long time, and we think it’s likely that it’s going to be duplicated in other places. So we accept the work of interning it in return for the potential memory savings. Since interning by definition means we may get back a new reference, we assign the result back tos3.s3now points to the same instances1ands2point to.