I understand that Strings may be interned, but it it an action that is performed religiously when a new string object is created?

Jls section 3.10.5 string literals.

link|improve this question

new string literals? – Bwmat Sep 28 '11 at 23:46
Also those String x = "zzz"; – Chin Boon Sep 28 '11 at 23:50
1  
@Chin. String x="zzz" does not create a new string object. – Alexander Pogrebnyak Sep 28 '11 at 23:52
1  
what I meant is that once you compile, you can't create new string literals, as it's only a string literal if it was in the source code. – Bwmat Sep 28 '11 at 23:58
1  
Yes, that's right. We'd say "referenced by x", but I think you understand the principle. – erickson Sep 29 '11 at 15:48
show 1 more comment
feedback

1 Answer

up vote 5 down vote accepted

All String literals go into the string pool. Otherwise, your application must call intern() on the String, or it won't go into the pool.

A String literal is a string that appears in source code with double quotes around it:

String greeting = "Hello, ";
String s = greeting + name;

In this example, "Hello, " is a literal string. It is in the intern pool. It is also referenced by the variable greeting.

The String referred to by s is not a literal, and is not in the intern pool… unless you make this call:

s = s.intern();
link|improve this answer
Hi Erickson, insightful, am i right to say that intern pool == string pool? – Chin Boon Sep 29 '11 at 0:31
@ChinBoon yes, the only String pool used by the runtime is the intern pool. – erickson Sep 29 '11 at 15:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.