Possible Duplicate:
In Java, does return trump finally?
Wondering if finally statement will still get executed if it is after return statement?
Wondering if finally statement will still get executed if it is after return statement? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Yes it will the only exception is |
|||||
|
|
yes finally will get executed even if you
Output:
|
|||
|
|
|
Not if the return statement is before its associated try block. Yes if the return statement is inside the associated try block.
|
||||
|
|
Yes, finally will be executed though it is after |
|||||
|
|
Yes, ofcourse. Finally statement is designed to be executed in any cases if execution will go into try statement. |
|||
|
|
|
finally block will fail only when we terminate JVM by calling |
|||
|
|
|
On top of the other answers, if there is a return in your finally block, statements after the return will not be executed.
In the above snippet, "In finally" is displayed while "Won't get printed" isn't. |
|||
|
|