final Keyword in Java (original) (raw)

In Java, the final keyword is used to restrict changes and make code more secure and predictable. It can be applied to variables, methods, and classes to prevent modification, overriding, or inheritance. This helps in creating constant values, stable methods, and immutable classes.

The following are different contexts where the final is used:

final

final keyword

Characteristics of final keyword in Java

Ways we use the final keyword in Java

The final keyword is used in exactly 3 main contexts:

1. Final Variable

A variable declared with final becomes constant after one assignment.

Java `

public class Geeks{

public static void main(String[] args) {
    final double PI = 3.14159;
    System.out.println("Value of PI: " + PI);
}

}

`

Output

Value of PI: 3.14159

Types of Final Variables

A variable declared with final becomes constant after one assignment.

**1. final Variable

final int THRESHOLD = 5;

**2. Blank final Variable

final int THRESHOLD;

**Note: A static final variable must be initialized either at the point of declaration or in a static initialization block.

**3. Static final Variable

static final double PI = 3.141592653589793;

**4. Static Blank final Variable

static final double PI;

static {

PI = 3.141592653589793;

}

Reference Final Variable

A final reference cannot refer to a new object though the object it points to can change internally.

Java `

class Geeks { public static void main(String[] args) { final StringBuilder sb = new StringBuilder("Geeks"); System.out.println(sb); sb.append("ForGeeks"); System.out.println(sb); } }

`

Output

Geeks GeeksForGeeks

This shows that a final reference cannot point to a different object, but the internal state of the object it points to can still be modified.

Reassigning a Final Variable (Error)

Java `

class Geeks { static final int CAPACITY = 4;

public static void main(String[] args) {
    CAPACITY = 5; // compile-time error
}

}

`

**Output:

Final Variable Throwing Compile-time Error

Local Final Variable

A local final variable must be assigned once.

Java `

class Geeks { public static void main(String[] args) { final int i; i = 20; System.out.println(i); } }

`

2. Final class

A class declared as final cannot be extended. A final class cannot be inherited, meaning no other class can extend it. This is commonly used for security or when the implementation should remain unchanged, such as in core classes like String.

final class A { // fields and methods }

// Illegal class B extends A { }

`

Final classes are useful when creating immutable classes such as String or wrapper classes.

3. Final Method

When a method is declared with final keyword, it is called a final method in Java.A final method, on the other hand, can be inherited but cannot be overridden by subclasses, ensuring that the original implementation remains intact.

class A { final void m1() { System.out.println("Final method"); } }

class B extends A { void m1() { } // compile-time error }

`