Before Java 8, interfaces could have only abstract methods. The implementation of these methods has to be provided in a separate class. So, if a new method is to be added in an interface, then its implementation code has to be provided in the class implementing the same interface. To overcome this issue, Java 8 has introduced the concept of default methods which allow the interfaces to have methods with implementation without affecting the classes that implement the interface.
interface TestInterface
{
public void square( int a);
default void show()
{
System.out.println( "Default Method Executed" );
}
}
class TestClass implements TestInterface
{
public void square( int a)
{
System.out.println(a*a);
}
public static void main(String args[])
{
TestClass d = new TestClass();
d.square( 4 );
d.show();
}
}
|
Output:
16
Default Method Executed
The default methods were introduced to provide backward compatibility so that existing interfaces can use the lambda expressions without implementing the methods in the implementation class. Default methods are also known as defender methods or virtual extension methods.
Static Methods:
The interfaces can have static methods as well which is similar to static method of classes.
interface TestInterface
{
public void square ( int a);
static void show()
{
System.out.println( "Static Method Executed" );
}
}
class TestClass implements TestInterface
{
public void square ( int a)
{
System.out.println(a*a);
}
public static void main(String args[])
{
TestClass d = new TestClass();
d.square( 4 );
TestInterface.show();
}
}
|
Output:
16
Static Method Executed
Default Methods and Multiple Inheritance
In case both the implemented interfaces contain default methods with same method signature, the implementing class should explicitly specify which default method is to be used or it should override the default method.
interface TestInterface1
{
default void show()
{
System.out.println( "Default TestInterface1" );
}
}
interface TestInterface2
{
default void show()
{
System.out.println( "Default TestInterface2" );
}
}
class TestClass implements TestInterface1, TestInterface2
{
public void show()
{
TestInterface1. super .show();
TestInterface2. super .show();
}
public static void main(String args[])
{
TestClass d = new TestClass();
d.show();
}
}
|
Output:
Default TestInterface1
Default TestInterface2
Important Points:
- Interfaces can have default methods with implementation in Java 8 on later.
- Interfaces can have static methods as well, similar to static methods in classes.
- Default methods were introduced to provide backward compatibility for old interfaces so that they can have new methods without affecting existing code.
This article is contributed by Akash Ojha. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.