I am reading about Garbage collection and i am getting confusing search results when i search for String literal garbage collections.
I need clarification on following points:
If a string is defined as literal at compile time [e.g:
String str = "java"
] then will it be garbage collected?If use intern method [e.g:
String str = new String("java").intern()
] then will it be garbage collected? Also will it be treated differently from String literal in point 1.Some places it is mentioned that literals will be garbage collected only when
String
class will be unloaded? Does it make sense because I don't thinkString
class will ever be unloaded.
str
will be garbage collected, but the literal it is created from will not.intern()
method checks the availability of the object in String pool. If the object/literal is available then reference of it will be returned. If the literal is not there in the pool then object is loaded in the perm area (String pool) and then reference to it will be return. We have to useintern()
method judiciously.Probably not. The code objects will contain one or more references to the
String
objects that represent the literals. So as long as the code objects are reachable, theString
objects will be to.It is possible for code objects to become unreachable, but only if they were dynamically loaded ... and their classloader is destroyed.
The object returned by the
intern
call will be the same object that represents the"java"
string literal. (The"java"
literal is interned at class loading time. When you then intern the newly constructedString
object in your code snippet, it will lookup and return the previously interned"java"
string.)However, interned strings that are not identical with string literals can be garbage collected once they become unreachable. The PermGen space is garbage collected on all recent HotSpot JVMs. (Prior to Java 8 ... which drops PermGen entirely.)
No ... because it is the same object as the string literal.
And indeed, once you understand what is going on, it is clear that string literals are not treated specially either. It is just an application of the "reachability" rule ...
You are right. It doesn't make sense. The sources that said that are incorrect. (It would be helpful if you posted a URL so that we can read what they are saying for ourselves ...)
Under normal circumstances, string literals and classes are all allocated into the JVM's permanent generation ("PermGen"), and usually won't ever be collected. Strings that are interned (e.g.
mystring.intern()
) are stored in a memory pool owned by theString
class in permgen, and it was once the case that aggressive interning could cause a space leak because the string pool itself held a reference to every string, even if no other references existed. Apparently this is no longer true, at least as of JDK 1.6 (see, e.g., here).For more on permgen, this is a decent overview of the topic. (Note: that link goes to a blog associated with a product. I don't have any association with the blog, the company, or the product, but the blog entry is useful and doesn't have much to do with the product.)