top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

In java is the finally block is always guaranteed to be execute?

+3 votes
322 views
In java is the finally block is always guaranteed to be execute?
posted Sep 5, 2013 by Arvind Singh

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

1 Answer

+1 vote

Finally will be called even if an exception was thrown in Try block.

The only time finally won't be called is if you call System.exit() or if the JVM crashes first.

answer Sep 5, 2013 by Satyabrata Mahapatra
...