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