java - What happens if an exception is thrown during finalize() -
What if an exception is made during execution of finalization ()? Is the stack open normally? Does it continue to last () and ignore the exception? Does it ultimately stop () and keep things going to GC? or something else?
I am not looking for guidelines for final use
From javadoc:
An exception thrown by the method is stopped due to finalizing this object, but it is otherwise ignored.
Comments
Post a Comment