We will learn in this tutorial about The finally keyword in Java programming language
The finally is a keyword of Java, is an optional part of a try block using exception handling in Java. When an exception is thrown inside a try block, the exception will be compared to any of the catch parts of the inside in try block .when the compare exception with catch block, the exception may match or not any catch block.
However, Java finally block is having a block of code.which is always executed whether the exception is handled or not
The finally clause is optional part in the try block. However, each try block requires at least one catch or finally clause.
try{ block of code...... catch{ exception 1..... } catch{ exception 2..... } ................ ................. catch{ exception n..... } finally { System.out.print(" I am a finally block"); System.out.print(" I always executed exception handled or not"); } }
Program
public class try_keyword{ public static void main(String args[]){ try{//try block for exception handling int a[]=new int[5]; a[6]=45; } finally{System.out.println("I always executed\n"); } } }
When the above code is compiled and executed, it will produce the following result
In the program, the finally block contains an important statement that must be executed whether an exception occurs or not
finally block always to be associated with the try block, never we can use finally without the try block
There are other Java language keywords that are similar to this keyword
static keyword in Java language
extends keyword in Java language
Suggested for you
Usage of final keyword in Java
Suggested for you
Keywords in Java language
Keywords in C++ language
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…