Java Finally
- if there is “return” or “exception” before try, finally block won’t be executed.
- if there is System.exit(0) in try block, finally block won’t be executed.
- if there is “return” in try block, finally block executes before return.
- if there is “return” in catch block, finally block executes before return.