top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

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

+2 votes
309 views
If I write System.exit (0); at the end of the try block, will the finally block still execute?
posted Mar 12, 2015 by Jenifer

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

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.

answer Mar 13, 2015 by Shivaranjini
...