Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Object finalization provides an object with a last resort to undertake any action before its storage is reclaimed. The automatic garbage collector calls the finalize() method in an object that is eligible for garbage collection before actually destroying the object. The finalize() method is defined in the Object class.
protected void finalize() throws Throwable |