static blank final variable:that is not initialized at the time of declaration is known as static blank final variable. It can be initialized only in static block.

Java Programming Language / Class, Object and Methods in java

839

Program:

 class Calculation{

  static final int data;//static blank final variable
  static{ data=10;}

  public static void main(String args[]){
    System.out.println(Calculation.data);
 }
}
 
 
 /*
 
 A static final variable that is not initialized
  at the time of declaration is known as static blank 
  final variable. It can be initialized only in static block.
  
   */

Output:

10
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.