| Author |
Garbage collection
|
Saurabh V Vakil
Greenhorn
Joined: Jan 30, 2008
Posts: 14
|
|
|
In case of inheritance, if the child class instance is garbage collected, then will the finalize method of the base class be called?
|
 |
Daesung Park
Ranch Hand
Joined: Mar 22, 2007
Posts: 68
|
|
|
Yes, it is called if subclass didn't override it.
|
Daesung Park
BLOG
|
 |
Peter Chase
Ranch Hand
Joined: Oct 30, 2001
Posts: 1970
|
|
In other words, finalize() is an ordinary overridable method. So, if the subclass has a version of finalize(), then the superclass version will only be called if the subclass version calls super.finalize(). Normally, it should do so. Of course, discussion of finalize() is of little more than academic interest, as there are very few worthwhile uses of finalisation.
|
Betty Rubble? Well, I would go with Betty... but I'd be thinking of Wilma.<br /> <br />#:^P
|
 |
Saurabh V Vakil
Greenhorn
Joined: Jan 30, 2008
Posts: 14
|
|
|
Thanks for your replies guys!!!
|
 |
 |
|
|
subject: Garbage collection
|
|
|