The java compiler adds public, static and final keywords before data members.
Java Programming Language Abstarct class and Methods in java (Article) Abstarct class and Methods in java (Program)
998Program:
interface Human{ public static final int age=62; // The java compiler adds public, static and final keywords before data members. public abstract void name(); } class Woman implements Human{ public void name(){ System.out.println("I am Your Mother: My age: "+age); } public static void main(String args[]){ Woman obj = new Woman(); obj.name(); } }
Output:
I am Your Mother: My age: 62 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.