Stackoverflow is full of questions related to different types of String initialization. I understand how different is String s = "word"
to String s = new String("word")
. So no need to 'touch' that topic.
I noticed that different people refer that String pool stores constants/objects/literals.
Constants are understandable, as they are final, so they always 'stay' there. Yes, also duplicates aren't stored in SCP.
But I can't understand does SCP store objects or literals. They are totally different concepts. Object is an entity, while literal is just a value. So what is the correct answer to this. Does SCP store objects or literals? I know it can't be both :)
Literals are a chunk of source code that is delimited by
"
. For example, in the following line of source code:"Hello World"
is a string literal.Objects are a useful abstraction for a meaningful bits of memory with data that (when grouped together) represents something, whether it be a
Car
,Person
, orString
.The string pool stores
String
objects rather thanString
literals, simply because the string pool does not store source code.You might hear people say "the string pool stores string literals". They (probably) don't mean that the string pool somehow has the source code
"Hello World"
in it. They (probably) mean that all theString
s represented by string literals in your source code will get put into the string pool. In fact, theString
s produced by constant expressions in your source code also gets added to the string pool automatically.