Java / final keyword
What is Java finally block?
Java finally block is used to execute important code such as closing connection, stream etc.
It is always executed whether exception is handled or not. Java finally block follows try or catch block.
More Related questions...