final variable: we can initialize blank final variable, but only in constructor.

Java Programming Language / Class, Object and Methods in java

756

Program:

 
class Calculation{
  final int roll;//blank final variable

  Calculation(){
  roll=10;
  System.out.println(roll);
  }

  public static void main(String args[]){
    new Calculation();
 }
}
 
 
 /* Can we initialize blank final variable?

Yes, but only in constructor. */

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.