Java 8 Default Methods Tutorial

Interfaces in Java always contained method declaration not their definitions (method body). There was no way of defining method body / definition in interfaces. This is because historically Java didn’t allow multiple inheritance of classes. It allowed multiple inheritance of interfaces as interface were nothing but method declaration. This solves the problem of ambiguity in multiple inheritance. Since Java 8 it is now possible to add method bodies in interfaces.

Java 8 has a new feature called Default Methods. It is now possible to add method bodies into interfaces!

public interface Math { int add(int a, int b); default int multiply(int a, int b) { return a * b; } }
Code language: Java (java)

In above Math interface we added a method multiply with actual method body.

Why we need Default Methods?

Why would one want to add methods into Interfaces? We’ll it is because interfaces are too tightly coupled with their implementation classes. i.e. it is not possible to add a method in interface without breaking the implementor class. Once you add a method in interface, all its implemented classes must declare method body of this new method.

Since Java 8, things started getting ugly. A new feature Lambda was introduce which is cool. However it is not possible to use this feature in existing Java libraries such as java.util package. If you add a single method in interface List, it breaks everything. You need to add its implementation in every class that implements List interface. Imagine in real world how many custom classes would change.

So for backward compatibility, Java 8 cleverly added Default Methods.

Virtual Extension Methods

It added a new concept Virtual extension methods, or as they are often called defender methods, can now be added to interfaces providing a default implementation of the declared behaviour. So existing interfaces can be augmented without compromising backward compatibility by adding extension methods to the interface, whose declaration would contain instructions for finding the default implementation in the event that implementors do not provide a method body. A key characteristic of extension methods is that they are virtual methods just like other interface methods, but provide a default implementation in the event that the implementing class does not provide a method body.

Consider following example:

interface Person { //adds a java 8 default method default void sayHello() { System.out.println("Hello there!"); } } class Sam implements Person { } public class Main { public static void main(String [] args) { Sam sam = new Sam(); //calling sayHello method calls the method //defined in interface sam.sayHello(); } }
Code language: Java (java)

Output:

Hello there!

In above code we added a defender method sayHello() in Person interface. So it was ok for class Sam to avoid declaring this methods body.

What about Multiple Inheritance?

Adding method definitions in interfaces can add ambiguity in multiple inheritance. isn’t it? Well, it does. However Java 8 handle this issue at Compile type. Consider below example:

interface Person { default void sayHello() { System.out.println("Hello"); } } interface Male { default void sayHello() { System.out.println("Hi"); } } class Sam implements Person, Male { }
Code language: Java (java)

In this example we have same defender method sayHello in both interfaces Person and Male. Class Sam implements these interfaces. So which version of sayHello will be inherited? We’ll if you try to compile this code in Java 8, it will give following error.


class Sam inherits unrelated defaults for sayHello() from types Person and Male class Sam implements Person, Male { ^ 1 error

So that solves multiple inheritance problem. You cannot implement multiple interfaces having same signature of Java 8 default methods (without overriding explicitly in child class).

We can solve the above problem by overriding sayHello method in class Sam.

interface Person { default void sayHello() { System.out.println("Hello"); } } interface Male { default void sayHello() { System.out.println("Hi"); } } class Sam implements Person, Male { //override the sayHello to resolve ambiguity void sayHello() { } }
Code language: Java (java)

It is also possible to explicitly call method from child class to parent interface. Consider in above example you want to call sayHello method from Male interface when Sam.sayHello is called. You can use super keyword to explicitly call the appropriate method.

class Sam implements Person, Male { //override the sayHello to resolve ambiguity void sayHello() { Male.super.sayHello(); } }
Code language: Java (java)

Difference between default methods and abstract class

Ok, so far it looks good. In Java 8 we can have concrete methods within interfaces.. right.. So how it is different from Abstract classes? Remember an abstract class is a class that can not be instantiated (i.e. objects can not be created of) and which may contain method bodies. Default method in Java 8 looks similar to Abstract class isn’t it?

We’ll its different actually. Abstract class can hold state of object. It can have constructors and member variables. Whereas interfaces with Java 8 default methods cannot hold state. It cannot have constructors and member variables. You should still use Abstract class whenever you think your class can have state or you need to do something in constructor. Default method should be used for backward compatibility. Whenever you want to add additional functionality in an existing legacy interface you can use default methods without breaking any existing implementor classes.

Also abstract classes cannot be root classes in Lambda expression. What?… I know that’s confusing, but Lambda expressions are the reason why virtual extension methods were introduced in Java 8. When a lambda expression is evaluated, the compiler can infers it into the interface where default method is added.

View Comments

  • nice tutorial and +1 for giving nice reasons by answering " Why we need Default Methods? " and " Difference between default methods and abstract class "

  • Its really interesting and unique. Thanks Viral for sharing this. Looking forward to use it in Java8.
    You Rocks !

  • Its a very fine feature that was needed to deal with multiple inheritance in Java.

    Thanks Viral.
    :-)

  • This is becoming more and more like C++ !! Java gained because it simplified. It is now going back the same path.

    What was the need for default methods. Say, if I want to add a new method "isHavingDuplicates()" to List. Instead of that, may I create a new interface IDuplicateDetectable (or any better name) with the new method and have the selected child classes implement this interface, and leave out the rest?

    Yes, they have given a feature. Use it if I like it, or ignore it. My point is that it introduces complexity to the language, and unexpected pitfalls.

    • Hi Satish, Thanks for your comment. Creating a new interface IDuplicateDetectable and adding method isHavingDuplicates() looks certainly good. But it does not solve the problem. The idea of default methods makes sense when you look at it from Lambda expressions perspective. If you want to add new functionality to any existing class such as ArrayList etc is impossible without breaking the hierarchy. By adding default methods which can be used with Lambda expressions give all your child classes additional features.

  • >>> may I create a new interface IDuplicateDetectable (or any better name) with the new method and have the selected child classes implement this interface, and leave out the rest?

    I guess it is more useful for framework writers. I do get the point, if I think over it again :-)
    new interfaces for every new method you want to introduce will be a bad idea.

    But then, it would be very easy with IDEs like Eclipse to add a new method to interface and implement in all child classes. Where you do not want to implement, simply throw UnsupportedOperationException in the implementation of the interface.

    What is the "cost" of adding a feature vs its benefits. I somehow do not like the direction Java is taking.
    JSR 310 for date time is more needed in Core java than default methods. We have the alternative in Joda Time, but it runs into corporate project management bureaucracy even though it is Apache 2 licensed.

  • Nice Article yar... Daily i am reading your articles those are giving me to build confidence in java

    :-)

  • how to override ActionErrors reset method in struts??what are the rules we should follow for that???

Recent Posts

  • Java

Java URL Encoder/Decoder Example

Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…

4 years ago
  • General

How to Show Multiple Examples in OpenAPI Spec

Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…

4 years ago
  • General

How to Run Local WordPress using Docker

Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…

4 years ago
  • Java

Create and Validate JWT Token in Java using JJWT

1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…

4 years ago
  • Spring Boot

Spring Boot GraphQL Subscription Realtime API

GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…

4 years ago
  • Spring Boot

Spring Boot DynamoDB Integration Test using Testcontainers

1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…

4 years ago