DEVFYI - Developer Resource - FYI

If I write return at the end of the try block, will the finally block still execute?

Java Interview Questions and Answers (part 3)


(Continued from previous question...)

522. If I write return at the end of the try block, will the finally block still execute?

Yes even if you write return as the last statement in the try block and no exception occurs, the finally block will execute. The finally block will execute and then the control return.

(Continued on next question...)

Other Interview Questions