final: In Java, final is a modifier that is used for class, method, and variable also. When a variable is declared with the final keyword, its value can’t be modified, essentially, a constant.
Immutability: In simple terms, immutability means unchanging overtime or being unable to be changed. In Java, we know that String objects are immutable means we can’t change anything to the existing String objects.
Differences between final and immutability
- final means that you can’t change the object’s reference to point to another reference or another object, but you can still mutate its state (using setter methods e.g). Whereas immutable means that the object’s actual value can’t be changed, but you can change its reference to another one.
- final modifier is applicable for variable but not for objects, Whereas immutability applicable for an object but not for variables.
- By declaring a reference variable as final, we won’t get any immutability nature, Even though reference variable is final. We can perform any type of change in the corresponding Object. But we can’t perform reassignment for that variable.
- final ensures that the address of the object remains the same whereas the Immutable suggests that we can’t change the state of the object once created.
JAVA
class Geeks {
public static void main(String[] args)
{
final StringBuffer sb = new StringBuffer( "Hello" );
sb.append( "GFG" );
System.out.println(sb);
sb = new StringBuffer( "Hello World" );
System.out.println(sb);
}
}
|
Output:
Geeks.java:14: error: cannot assign a value to final variable sb
sb = new StringBuffer("Hello World");
^
1 error
Pictorial Representation of the above Program

Explanation: In the above picture, we can see that we are creating an object of StringBuffer class by making reference final.
- Declaring reference variable as final, does not mean that the object is immutable.
- In the next line we are performing append() operation on the created object and it is successfully changed.
- If the object is immutable, then the above append operation can’t be done.
- But it is executed successfully as we declare the reference variable as final. final means we can’t reassign anything to that reference variable again.
- Therefore when we try to create a new object of StringBuffer then it won’t create an object by throwing an error to the console.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
02 Mar, 2022
Like Article
Save Article