I just fail to understand why must one use Runtime.addShutdownHook. If you want to do some cleanup when the jvm exits, why not just overload the finalize method of the daemon class. What is the advantage of using shutdown hook over finalize method.
Also there is a deprecated function runFinalizersOnExit. If I set it to false, I believe finalizers won't run. This contradicts the java guarantee that finalizers always run before garbage collections.
There is no guarantee that a finalizer will ever run.
finalize()
is called when the object is garbage collected. But the garbage collector may not collect anything when the program runs.Shutdown hooks by contrast are run when the jvm exits normally. so even that isn't 100% guarantee either but it's pretty close. There are only a few edge cases where a shutdown hook doesn't run.
EDIT I looked up the edge cases where a shutdown hook is not executed
Shutdown hook IS executed:
Shutdown hook IS NOT executed: