If I use String.intern() to improve performance as I can use "==" to compare interned string, will I run into garbage collection issues. How does the garbage collection mechanism of interned strings differ from normal strings ?
|
|
In fact, this not a garbage collection optimisation, but rather a string pool optimization.
When you call However, it will become a garbage collector issue once your string is of no more use in application, since the interned string pool is a static member of the String class and will never be garbage collected. As a rule of thumb, i consider preferrable to never use this intern method and let the compiler use it only for constants Strings, those declared like this :
This is better, in the sense it won't let you do the false assumption Besides, the fact is |
|||||||||||||||
|
|
That interned strings are garbage collected can be demonstrated with the following Java code:
This code creates 30 times the same string, interning it each time. Also, it uses Anyway, usage of |
|||
|
|
|
Please read: http://satukubik.com/2009/01/06/java-tips-memory-optimization-for-string/ The conclusion I can get from your information is: You interned too many String. If you really need to intern so many String for performance optimization, increase the perm gen memory, but if I were you, I will check first if I really need so many interned String. |
|||
|