Sunday, July 8, 2007

String and its Intern method

How does the JVM create objects when you create a String literal?
How does the JVM create objects when you create a String object using new operator?
How does the JVM create objects when you create a String object and call its intern method?


To answer the first question, whenever you create a String literal, the JVM internally checks whether there is any object already existing with the same value satisfying the equals() method of the string. If any such object already exists, then the reference to that existing object is returned. Also do note that, any change to this returned reference's value will not affect the string because String is immutable. So, a new string object will be created and the new value will be assigned to the newly created object and will be returned to the reference while the retrieved string will not be changed.
If you create 100 String literals with the value "Hello", all the references to those 100 literals will be the same. You can cross check this using the == operator.

Coming to the second question, whenever you create an object using the new keyword, the JVM will not check for any existence of any object instead it will create a new String object and return its reference. Even though there is a string existing with the same value, the JVM will return a new string because of the presence of the new keyword. Consider you create a string literal,
String str = "hello";

and a string object using new keyword
 String str1 = new String("hello");

The two strings' value may be equal but both the references will be pointing to two different objects. You can cross check this using the == operator. If you create another string literal now with the value "hello", then the reference of the first variable, str will be returned to the new literal.

The third question will reveal one of the optimization mechanisms used by the JVM. Consider you create a String object using the new keyword.
String str = new String("Hello");

If you call the intern method of this String object,
str = str.intern();

the JVM will check whether the String pool maintained by the JVM contains any String objects with the same value as the str object with the equals method returning true. If the JVM finds such an object, then the JVM will return a reference to that object present in the String pool. If no object equal to the current object is present in the String pool, then the JVM adds this string into the String pool and returns its reference to the calling object. The JVM adds the object to the String pool so that the next time when any string object calls the intern method, space optimization can be done if both of these strings are equal in value. You can check the working of intern method using the equals and == operators.

13 comments:

Shashank said...

great article... very helpful. thanks.

Tejashree said...

Really nice article. Thanks a lot :)

Anonymous said...

Hai nice article

saroj said...

thanks grt article

saroj said...

thanks grt article

Raamireddy said...

Really very good article. Thanks

Raamireddy said...

Verygood article

Raamireddy said...

Really very good article. Thanks

Raamireddy said...

Really very good article. Thanks

Rajinder said...

Nice article!
String Pool

Sandeep said...

Good One ! Thanks.

Sandeep said...

Good One ! Thanks.

gajapathikimidi said...

I am sorry, But there may be a small correction.

1) String s1 = "hi";
String s2 = "hi";
s1 == s2 will not give true always.

2) Stringpool is unique for String literals.

String s3 = new String("hello");
String s4 = new String("hello");

Once a literal hello is created for s3 and for s4 it wont create a new literal again for the s4. It creates one object s4 in heap and assigns the same memory location of hello which was earlier assigned for s3.