hi all I am confused about string pool in java .I came across this word while starting string chapter in java.Please make me understand in layman concept what actually the string pool do.
|
|
This prints
When compiler optimizes your string literals, it sees that both Name 'string pool' comes from the idea that all already defined string are stored in some 'pool' and before creating new |
||||
|
|
|
I don't think it actually does much, it looks like it's just a cache for string literals. If you have multiple Strings who's values are the same, they'll all point to the same string literal in the string pool.
In case 1, literal s1 is created newly and kept in the pool. But in case 2, literal s2 refer the s1, it will not create new one instead.
|
||||
|
|
|
Let's start with a quote from the virtual machine spec:
This may not occur - This is a hint, that there's something special about
So in this case, variables This is not the case if we use the constructor:
Again, So why do we have a String pool? Strings and especially String literals are widely used in typical Java code. And they are immutable. And being immutable allowed to cache String to save memory and increase performance (less effort for creation, less garbage to be collected). As programmers we don't have to care much about the String pool, as long as we keep in mind:
|
||||
|
|
When the JVM loads classes, or otherwise sees a literal string, or some code
it'll return You can add a string to the pool by calling
|
|||||||
|
|
http://www.xyzws.com/Javafaq/what-is-string-literal-pool/3. One more answer that you could check. |
|||
|
|