Interface Example, a class implements an interface.
Java Programming Language / Abstarct class and Methods in java
1239Program:
interface University{ void name(); } class College implements University{ public void name(){ System.out.println("Atnyla technical Institute"); } public static void main(String args[]){ College obj = new College(); obj.name(); } }
Output:
Atnyla technical Institute 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