Interface

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. In other words, you can say that interfaces can have abstract methods and variables. It cannot have a method body. Java Interface also represents the IS-A relationship. It cannot be instantiated just like the abstract class. Since Java 8, we can have default and static methods in an interface. Since Java 9, we can have private methods in an interface.

Why use Java interface?

There are mainly three reasons to use interface. They are given below.

  1. It is used to achieve abstraction.
  2. By interface, we can support the functionality of multiple inheritance.
  3. It can be used to achieve loose coupling.

How to declare an interface?

An interface is declared by using the interface keyword. It provides total abstraction; means all the methods in an interface are declared with the empty body, and all the fields are public, static and final by default. A class that implements an interface must implement all the methods declared in the interface.

Syntax:


\begin{lstlisting}
interface <interface_name>{
// declare constant fields
// declare methods that abstract
// by default.
}
\end{lstlisting}

Interface fields are public, static and final by default, and the methods are public and abstract.

Figure 4.9: Interface
Image interface

As shown in the figure given below, a class extends another class, an interface extends another interface, but a class implements an interface.

Figure 4.10: Extends vs. implements
Image interfacerelation



Subsections