DEVFYI - Developer Resource - FYI

If I write System.exit (0); at the end of the try block, will the finally block still execute?

Java Interview Questions and Answers (part 3)


(Continued from previous question...)

523. If I write System.exit (0); at the end of the try block, will the finally block still execute?

No in this case the finally block will not execute because when you say System.exit (0); the control immediately goes out of the program, and thus finally never executes.

(Continued on next question...)

Other Interview Questions