public class ClassWithInnerClass {
    int a = 10;
    public static void outer(){
        System.out.println("In method of outer class");
    }
        final static class Inner{
            int b = 20;
            public void innermethod(){
                System.out.println("In method of inner class");
                System.out.println("Inner class variable b = "+b);
            }
        }
}
In the above code, i have an outer class and then there is a static nested class with the non-access specifier 'final'.Does this make this class similar to "Constant" variables?
 
     
     
    