Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Lost String objects are memory wasters is it? How can garbage collection be invoked for the same?

share|improve this question
1  
What precisely do you mean by a "lost String object"? An object not referenced by any other object, or ... ? – Péter Török Mar 25 '10 at 9:38
Conditions of invokation of garbage collector are really well documented. As is its behaviour. I urge you to take a look at JDK documentation, which could clarify all that. Except for the lost strings, that are to me quite obscure. – Riduidel Mar 25 '10 at 9:41
Meaningless question. – EJP Mar 25 '10 at 10:18

3 Answers

up vote 9 down vote accepted

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;

String veryLarge = ... // create a very large string
String small = veryLarge.substring(0, 1);
veryLarge = null; // get rid of the last explicit reference to veryLarge.
longLived.saveString(small); // stop small from being collected.

This sequence has the unfortunate effect of leaking the character array used to represent the contents of the veryLarge String. This happens because the substring method uses a clever optimization to avoid creating a copy of the target String's characters (The problem is likely to bite hardest if you call intern() on the small String. ... Actually, intern is safe - see @MJessup's comment.)

The way to avoid the leak is to change the 2nd line above to:

String small = new String(veryLarge.substring(0, 1));

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.

share|improve this answer
+1 That is a very useful and interesting fact about substring, it would be nice if they shared that tidbit in the API docs. I did do a quick check and when I interned a substring string, only the actual characters came back (not the larger character array) so calling intern appears to be safe on a substring. – M. Jessup Mar 25 '10 at 12:27
Yes, but unless you really need the string to be long lived, new String is cheaper and better for GC performance. – Stephen C Aug 5 '12 at 0:04
String s = new String("test");

the string object referred by s will be on heap and the string literal "test" will be in string pool. Now if we do:

s = NULL;

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.

share|improve this answer
"But the objects in the string pool will not be garbage collected." Sure? – Thilo Mar 25 '10 at 9:50

If by "the same" you mean avoiding having two different String instances with the same content, you can use the String.intern() method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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