Saved Bookmarks
| 1. |
What Is The Use Of The Finally Block? Is Finally Block In Java Guaranteed To Be Called? When Finally Block Is Not Called? |
|
Answer» Finally is the block of code that EXECUTES always. The code in finally block will execute even if an exception is occurred. Finally block is NOT called in FOLLOWING conditions
Finally is the block of code that executes always. The code in finally block will execute even if an exception is occurred. Finally block is NOT called in following conditions |
|