Home / Questions / If System.exit (0); is written at the end of the try block, will the finally block still execute?
Explanatory Question

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

👁 1,821 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

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.