| Author |
method-local inner classes
|
Harry Tuttle
Greenhorn
Joined: Apr 08, 2010
Posts: 24
|
|
I'm just preparing for the scjp/ocp and in the chapter about the inner classes (SCJP Sun Certified Programmer for Java 6 Study Guide I, p. 670) there is this code example:
I understand all lines, but my question is: It's right that the inner object will be carbage collected (but with no garantee) after the method doStuff() completes?
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12929
|
|
|
Since the variable inner goes out of scope at the end of the method, there are no other references to the object and the object is not passed out of the method, then yes, it's eligible for garbage collection.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: method-local inner classes
|
|
|