0% found this document useful (0 votes)
377 views4 pages

Final Keyword in Java

The final keyword in Java can be applied to variables, methods, and classes. It restricts changes to a variable's value after it is initialized, prevents overriding of a method in a subclass, and disallows extending of a final class. A final variable must be initialized either at declaration or in the constructor; a static final variable can only be initialized in a static block. The final keyword is used to define constants and prevent inheritance and overriding behavior.

Uploaded by

Bezimena
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
377 views4 pages

Final Keyword in Java

The final keyword in Java can be applied to variables, methods, and classes. It restricts changes to a variable's value after it is initialized, prevents overriding of a method in a subclass, and disallows extending of a final class. A final variable must be initialized either at declaration or in the constructor; a static final variable can only be initialized in a static block. The final keyword is used to define constants and prevent inheritance and overriding behavior.

Uploaded by

Bezimena
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 4

javatpoint.

com

http://www.javatpoint.com/final-keyword

Final Keyword In Java


next prev
The final keyword in java is used to restrict the user. The java final keyword can be used in many context.
Final can be:
1. variable
2. method
3. class
The final keyword can be applied with the variables, a final variable that have no value it is called blank final
variable or uninitialized final variable. It can be initialized in the constructor only. The blank final variable can be
static also which will be initialized in the static block only. We will have detailed learning of these. Let's first
learn the basics of final keyword.

1) Java final variable


If you make any variable as final, you cannot change the value of final variable(It will be constant).

Example of final variable


There is a final variable speedlimit, we are going to change the value of this variable, but It can't be changed
because final variable once assigned a value can never be changed.
1. class Bike9{
2. final int speedlimit=90;
3. void run(){
4.

speedlimit=400;

5. }
6. public static void main(String args[]){
7. Bike9 obj=new Bike9();
8. obj.run();
9. }
10. }

1/4

Test it Now
Output:Compile Time Error

2) Java final method


If you make any method as final, you cannot override it.

Example of final method


1. class Bike{
2.

final void run(){System.out.println("running");}

3. }
4. class Honda extends Bike{
5.

void run(){System.out.println("running safely with 100kmph");}

6.

public static void main(String args[]){

7.

Honda honda= new Honda();

8.

honda.run();

9.

10. }
Test it Now
Output:Compile Time Error

3) Java final class


If you make any class as final, you cannot extend it.

Example of final class


1. final class Bike{}
2. class Honda1 extends Bike{
3.

void run(){System.out.println("running safely with 100kmph");}

4.

public static void main(String args[]){

5.

Honda1 honda= new Honda();

6.

honda.run();

7.

8. }
Test it Now
Output:Compile Time Error

Q) Is final method inherited?


Ans) Yes, final method is inherited but you cannot override it. For Example:
1. class Bike{
2.

final void run(){System.out.println("running...");}

3. }
4. class Honda2 extends Bike{

2/4

5.

public static void main(String args[]){

6.

new Honda2().run();

7.

8. }
Test it Now
Output:running...

Q) What is blank or uninitialized final variable?


A final variable that is not initialized at the time of declaration is known as blank final variable.
If you want to create a variable that is initialized at the time of creating object and once initialized may not be
changed, it is useful. For example PAN CARD number of an employee.
It can be initialized only in constructor.

Example of blank final variable


1. class Student{
2. int id;
3. String name;
4. final String PAN_CARD_NUMBER;
5. ...
6. }

Que) Can we initialize blank final variable?


Yes, but only in constructor. For example:
1. class Bike10{
2.

final int speedlimit;

3.

Bike10(){

4.

speedlimit=70;

5.

System.out.println(speedlimit);

6.

7.

public static void main(String args[]){

8.

new Bike10();

9. }
10. }
Test it Now
Output:70

static blank final variable


A static final variable that is not initialized at the time of declaration is known as static blank final variable. It can
be initialized only in static block.

Example of static blank final variable


1. class A{

3/4

2.

static final int data;

3.

static{ data=50;}

4.

public static void main(String args[]){

5.

System.out.println(A.data);

6. }
7. }

Q) What is final parameter?


If you declare any parameter as final, you cannot change the value of it.
1. class Bike11{
2.

int cube(final int n){

3.

n=n+2;

4.

n*n*n;

5.

6.

public static void main(String args[]){

7.

Bike11 b=new Bike11();

8.

b.cube(5);

9. }
10. }
Test it Now
Output:Compile Time Error

Q) Can we declare a constructor final?


No, because constructor is never inherited.
Next TopicRuntime Polymorphism in java
prev next

4/4

You might also like