E N D
Final Keyword Keywords in JAVA
Overview Final is a modifier that provides restrictions in Java.
Program class FinalVariable { public static void main(String[] args) { final int X = 5; X=10; //gives error as re-assignment is not permitted System.out.println(X); } }
Types The final keyword can be used in all below levels: variable method class