The java compiler adds public and abstract keywords before the interface method.
Java Programming Language / Abstarct class and Methods in java
3906Program:
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.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS