Is there any condition where finally might not run in java? Thanks.
|
2
|
|||
|
|
|
from the Sun Tutorials
I don't know of any other ways the finally block wouldn't execute... |
||
|
|
|
System.exit shuts down the Virtual Machine.
"bye" does not print out in above code. |
|||
|
|
|
|
A non-programmatic way...pull the plug! |
||
|
|
|
Just to expand on what others have said, anything that does not cause something like the JVM exiting will incur the finally block. So the following method:
will strangely both compile and return 1. |
||||||
|
|
|
Related to System.exit, there are also certain types of catastrophic failure where a finally block may not execute. If the JVM runs out of memory entirely, it may just exit without catch or finally happening. Specifically, I remember a project where we foolishly tried to use
This didn't work because the JVM had no memory left for executing the catch block. |
||
|
|
|
In that case the finally will not execute (unless the deprecated |
||
|
|
