Interface in Java
An interface in java is a blueprint of a class. It has static constants and abstract methods. The interface in java is a mechanism to achieve abstraction. There can be only abstract methods in the java interface not method body. It is used to achieve abstraction and multiple inheritance in Java. Java Interface also represents IS-A relationship. It cannot be instantiated just like abstract class. |
Why use Java interface?
There are mainly three reasons to use interface. They are given below.
|
Java Interface Example
In this example, Printable interface has only one method, its implementation is provided in the A class.
Sign up here with your email
ConversionConversion EmoticonEmoticon