Monday 27 July 2015

Initilize final variable using constructer

package com.swain.sitansu;

public class Test {

private final String TEST;

public Test(String TEST) {
this.TEST = "Hello";//Initilize final variable using constructer
}

public static void main(String[] args) {
System.out.println(new Test("hello").TEST);
}

}

No comments:

Post a Comment