Java final Keyword
Sujit Kumar
Zenolocity LLC
Copyright @ 2012
final applied to Class and Methods
• When applied to a class it means the class
cannot be sub-classed.
• When applied to a method, it means that the
method cannot be overridden in a subclass.
final applied to a variable
• A final variable can only be initialized once, either via
an initializer or an assignment statement.
• It does not need to be initialized at the point of
declaration: this is called a "blank final" variable.
• A blank final instance variable of a class must be
definitely assigned at the end of every constructor of
the class in which it is declared
• Similarly, a blank final static variable must be definitely
assigned in a static initializer of the class in which it is
declared
• Otherwise, a compile-time error occurs in both cases.

Java final keyword

  • 1.
    Java final Keyword SujitKumar Zenolocity LLC Copyright @ 2012
  • 2.
    final applied toClass and Methods • When applied to a class it means the class cannot be sub-classed. • When applied to a method, it means that the method cannot be overridden in a subclass.
  • 3.
    final applied toa variable • A final variable can only be initialized once, either via an initializer or an assignment statement. • It does not need to be initialized at the point of declaration: this is called a "blank final" variable. • A blank final instance variable of a class must be definitely assigned at the end of every constructor of the class in which it is declared • Similarly, a blank final static variable must be definitely assigned in a static initializer of the class in which it is declared • Otherwise, a compile-time error occurs in both cases.