Last Updated : 28 Jul, 2025
The final keyword in Java is a non-access modifier used to prevent modification. It can be applied to variables (value cannot change), methods (cannot be overridden) and classes (cannot be extended).
The following are different contexts where the final is used:
In Java, the final keyword is used to indicate that a variable, method or class cannot be modified or extended. Here are some of its characteristics:
When a variable is declared with the final keyword, its value can't be changed, essentially, a constant. This also means that you must initialize a final variable..
Example:
Java
public class Geeks {
public static void main(String[] args) {
// Define a constant variable PI
final double PI = 3.14159;
// Print the value of PI
System.out.println("Value of PI: " + PI);
}
}
Value of PI: 3.14159Different Methods of Using Final Variable
Let's see different methods that we can use final variable in Java.
1. final VariableExample:
2. Blank final Variable// Final variable
final int THRESHOLD = 5;
Example:
3. Static final Variable// Blank final variable
final int THRESHOLD;
Example:
4. Static Blank final Variable// Final static variable PI
static final double PI = 3.141592653589793;
Example:
Initializing a final Variable// Blank final static variable
static final double PI;
A final variable in Java must be initialized exactly once. If not initialized at the time of declaration, it is known as a blank final variable. There are three ways to initialize a final variable:
Let us see these two different ways of initializing a final variable
Example:
Java
class Geeks {
// a final variable direct initialize
final int THRESHOLD = 5;
// a blank final variable
final int CAPACITY;
// another blank final variable
final int MINIMUM;
// a final static variable PI direct initialize
static final double PI = 3.141592653589793;
// a blank final static variable
static final double EULERCONSTANT;
// instance initializer block for initializing CAPACITY
{
CAPACITY = 25;
}
// static initializer block for initializing EULERCONSTANT
static{
EULERCONSTANT = 2.3;
}
// constructor for initializing MINIMUM
public Geeks()
{
MINIMUM = -1;
}
}
There was no main method in the above code as it was simply for illustration purposes to get a better understanding to draw conclusions:
Observation 1: When to use a final variable?
The only difference between a normal variable and a final variable is that we can re-assign the value to a normal variable but we cannot change the value of a final variable once assigned. Hence final variables must be used only for the values that we want to remain constant throughout the execution of the program.
Observation 2: Reference final variable.
When a final variable is a reference to an object, then this final variable is called the reference final variable. For example, a final StringBuffer variable looks defined below as follows:
final StringBuffer sb;
As we all know a final variable cannot be re-assign. But in the case of a reference final variable, the internal state of the object pointed by that reference variable can be changed. Note that this is not re-assigning.
This property of the final is called non-transitivity. To understand what is meant by the internal state of the object as shown in the below example as follows:
Example 1:
Java
// Main class
class Geeks {
// Main driver method
public static void main(String[] args)
{
// Creating an object of StringBuilder class Final reference variable
final StringBuilder sb = new StringBuilder("Geeks");
// Printing the element in StringBuilder object
System.out.println(sb);
// changing internal state of object reference by final reference variable sb
sb.append("ForGeeks");
// Again printing the element in StringBuilder object after appending above element in it
System.out.println(sb);
}
}
Geeks GeeksForGeeks
The non-transitivity property also applies to arrays, because arrays are objects in Java. Arrays with the final keyword are also called final arrays.
Note: As discussed above, a final variable cannot be reassign, doing it will throw compile-time error.
Example 2:
Java
class Geeks {
// Declaring and customly initializing static final variable
static final int CAPACITY = 4;
// Main driver method
public static void main(String args[])
{
// Re-assigning final variable will throw compile-time error
CAPACITY = 5;
}
}
Output:
Remember: When a final variable is created inside a method/constructor/block, it is called local final variable and it must initialize once where it is created. See below program for local final variable.
Example 3:
Java
class Geeks {
// Main driver method
public static void main(String args[])
{
// Declaring local final variable
final int i;
// Now initializing it with integer value
i = 20;
// Printing the value on console
System.out.println(i);
}
}
Remember these key points as perceived before moving forward as listed below as follows:
Note: the difference between C++ const variables and Java final variables. const variables in C++ must be assigned a value when declared. For final variables in Java, it is not necessary as we see in the above examples. A final variable can be assigned value later, but only once.
final with foreach loop: final with for-each statement is a legal statement.
Example:
Java
class Geeks {
// Main driver method
public static void main(String[] args)
{
// Declaring and initializing custom integer array
int arr[] = { 1, 2, 3 };
// final with for-each statement legal statement
for (final int i : arr)
System.out.print(i + " ");
}
}
Output explanation: Since the "i" variable goes out of scope with each iteration of the loop, it is re-declared each iteration, allowing the same token (i) to be used to represent multiple variables.
Example:
Java
public class Geeks {
public static void main(String[] args) {
final int VALUE = 10; // declaring a final variable
System.out.println("The value is: " + VALUE);
final String MESSAGE = "Hello, world!"; // declaring a final variable
System.out.println(MESSAGE);
MyClass myObj = new MyClass();
myObj.printMessage();
myObj.printFinalMessage();
}
}
class MyClass {
final String message = "Hello!"; // declaring a final instance variable
void printMessage() {
System.out.println(message);
}
void printFinalMessage() {
final String finalMessage = "Hello, final!";
System.out.println(finalMessage);
}
}
final class MyOtherClass { // declaring a final class
// ...
}
The value is: 10 Hello, world! Hello! Hello, final!Java Final classes
When a class is declared with the final keyword in Java, it is called a final class. A final class cannot be extended(inherited).
There are two uses of a final class:
Usage 1: One is definitely to prevent inheritance, as final classes cannot be extended. For example, all Wrapper Classes like Integer, Float, etc. are final classes. We can not extend them.
Java
final class A
{
// methods and fields
}
// The following class is illegal
class B extends A
{
// COMPILE-ERROR! Can't subclass A
}
Usage 2: The other use of final with classes is to create an immutable class like the predefined String class. One can not make a class immutable without making it final.
Java Final MethodWhen a method is declared with final keyword, it is called a final method in Java. A final method cannot be overridden.
The Object class does this a number of its methods are final. We must declare methods with the final keyword for which we are required to follow the same implementation throughout all the derived classes.
Illustration: Final keyword with a method
Java
class A
{
final void m1()
{
System.out.println("This is a final method.");
}
}
class B extends A
{
void m1()
{
// Compile-error! We can not override
System.out.println("Illegal!");
}
}
Advantages of final Keyword in Java
The final keyword in Java provides several advantages, including:
Related Interview Question(Important): Difference between final, finally and finalize in Java
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4