Categories: Keyword in Java

The finally keyword in Java programming language

The finally keyword in Java programming language

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

 

Output

 

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

try keyword in Java

Catch keyword in Java

implements keyword in java

public Key words in Java

static keyword in Java language

Volatile Keyword in Java

Transient keyword in Java

Package keyword in Java

class keyword in Java

boolean keyword in Java

break keyword in Java

do keyword in Java

double keyword in Java

This keyword in Java

final keyword in Java

switch keyword in Java

interface keyword in java

extends keyword in Java language

 

Suggested for you

 Java language Keywords

C language Keywords

 Python language Keywords

keywords in C language

Usage of final keyword in Java

Usage of this keyword in Java

 

 

Suggested for you

Keywords in Java language

Keywords in C++ language

Keywords in C language

Keywords in Python language

 

The try keyword in Java programming language
The extends keyword in Java programming language
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

2 months ago