Is a "static final" directly allocated into young gen or old gen or perm gen? (I guess it will most likely land into old gen over the time I suppose.) If it is allocated in the perm gen then, will it be garbage collected when class unloading takes place in Perm Gen ?
AFAIK, an object referenced by a [The reason I think this is that the object will be allocated by The space for the frame containing the static variables is probably allocated in permGen. Of course, this is not a regular Java object.
That depends on whether the permGen is garbage collected. In modern JVMs it is, and I would expect that the objects referenced by an unloaded classes statics would be garbage collected in the same GC cycle, or the next one ... assuming they were unreachable. Either way, you should not code your application to depend on any of these details. They are JVM specific. |
|||||
|
Class.forName()can potentially become unreachable, and subject to unloading / garbage collection ... depending on the JVM options. – Stephen C Sep 27 '10 at 1:44