Lost String objects are memory wasters is it? How can garbage collection be invoked for the same?
|
|
In Java, it is bad practice to explicitly invoke the garbage collector. Rather, you should let the JVM decide when to run the garbage collector. When the GC runs, it will automatically reclaim Strings that are no longer reachable. Even interned Strings will be collected in recent editions of Java. The only way that you can "lose" Strings is if you do something like this;
This sequence has the unfortunate effect of leaking the character array used to represent the contents of the The way to avoid the leak is to change the 2nd line above to:
But you should only do this sort of thing if you are going to keep references to the substrings in long-lived data structures. Otherwise, the creation of the new String is just a waste of processor cycles ... and memory. |
|||||
|
the string object referred by s will be on heap and the string literal
The reference to the string object is lost and if there is no other reference to this string object it will be GC eligible. But the objects in the string pool will not be garbage collected. They are there to be reused during the lifetime of the program, to improve the performance. |
|||
|
|
If by "the same" you mean avoiding having two different String instances with the same content, you can use the String.intern() method. |
|||
|
|