Write a program in Java to demonstrate use of final class.

 

AIM: Write a program in Java to demonstrate the use of the final class.

CODE:

final class Demo{

            final int a=10;

            final void disp(){

                        System.out.println("Final variable="+a);

            }

}

public class p24 extends Demo{

            public static void main(String args[]){

                        Demo d= new Demo();

                        d.disp();

            }

}

OUTPUT:



Comments

Popular posts from this blog

Write a program in Java to demonstrate the use of 'final' keyword in the field declaration. How it is accessed using the objects.

Write a program in Java to demonstrate single inheritance, multilevel inheritance and hierarchical inheritance.