Site iconJava PDF Blog

Java 8 Default Methods Explained in 5 minutes

At IDR Solutions we use Java 8 for the development of our products (a Java PDF Viewer and SDKPDF to HTML5 converter and a Java ImageIO replacement).

In this article, we will be looking at Defaults Methods which is another really useful feature of Java 8.

Default methods enable us to add new functionalities to interfaces without breaking the classes that implement that interface. Let’s take a look at the example below.

public class MyClass implements InterfaceA {

    /**
     * @param args the command line arguments
     */    public static void main(String[] args) {
        // TODO code application logic here
    }

    @Override
    public void saySomething() {
        System.out.println("Hello World");
    }
   
}

interface InterfaceA {
  public void saySomething(); 
  
}

The code above shows the class MyClass implementing InterfaceA’s method saySomething(). Now, let’s add a new method called sayHi() InterfaceA. By doing so, we have introduced a problem to class MyClass as it will not compile until we provide an implementation for the method sayHi().
This is when Defaults methods becomes useful. By Adding the keyword default before the method’s access modifier, we do not have to provide an implementation for the method sayHi() in class MyClass.

In ‘the strictest sense’, Default methods are a step backward because they allow you to ‘pollute’ your interfaces with code. But they provide the most elegant and practical way to allow backward compatibility. It made it much easier for Oracle to update all the Collections classes and for you to retrofit your existing code for Lambda.

public class MyClass implements InterfaceA {

    /**
     * @param args the command line arguments
     */    public static void main(String[] args) {
        // TODO code application logic here
    }

    @Override
    public void saySomething() {
        System.out.println("Hello World");
    }

}

interface InterfaceA {

    public void saySomething();

    default public void sayHi() {
      System.out.println("Hi");
    }

}

Note that we have to provide an implementation for all default methods. So default methods provide us the flexibility to allow methods to be implemented in interfaces. The implementation will be used as default if a concrete class does not provide an implementation for that method.

Conflicts with Multiple Interface.

Since classes in java can implement multiple interfaces, there could be a situation where 2 or more interfaces have a default method with the same signature hence causing conflicts as java will not know what methods to use at a time. This will then result in a compilation error with the message MyClass inherits unrelated defaults for sayHi() from types InterfaceA and InterfaceB
Let’s take a look at the example below.

public class MyClass implements InterfaceA, InterfaceB {

    /**
     * @param args the command line arguments
     */    public static void main(String[] args) {
        // TODO code application logic here
    }

    @Override
    public void saySomething() {
        System.out.println("Hello World");
    }

}

interface InterfaceA {

    public void saySomething();

    default public void sayHi() {
        System.out.println("Hi from InterfaceA");
    }

}

interface InterfaceB {
     default public void sayHi() {
        System.out.println("Hi from InterfaceB");
    }
}

In order to work around situations like this, we will have to provide an implementation for sayHi() method in the class MyClass therefore overriding both methods in InterfaceA and InterfaceB.

public class MyClass implements InterfaceA, InterfaceB {

    /**
     * @param args the command line arguments
     */    public static void main(String[] args) {
        // TODO code application logic here
    }

    @Override
    public void saySomething() {
        System.out.println("Hello World");
    }
    
    @Override
    public void sayHi() {
        System.out.println("implemetation of sayHi() in MyClass");
    }

}

interface InterfaceA {

    public void saySomething();

    default public void sayHi() {
        System.out.println("Hi from InterfaceA");
    }

}

interface InterfaceB {
     default public void sayHi() {
        System.out.println("Hi from InterfaceB");
    }
}

If we want to specifically invoke one of the sayHi() methods in either InterfaceA or InterfaceB, we can also do as follows:

public class MyClass implements InterfaceA, InterfaceB {

    /**
     * @param args the command line arguments
     */    public static void main(String[] args) {
        // TODO code application logic here
    }

    @Override
    public void saySomething() {
        System.out.println("Hello World");
    }
    
    @Override
    public void sayHi() {
       InterfaceA.super.sayHi();
    }

}

interface InterfaceA {

    public void saySomething();

    default public void sayHi() {
        System.out.println("Hi from InterfaceA");
    }

}

interface InterfaceB {
     default public void sayHi() {
        System.out.println("Hi from InterfaceB");
    }
}

If you found this article useful, you may also be interested in our other Java8 posts on Lambda Expression, Streams API, Consumer Suppliers, Method References, Optional and Repeating Annotations.

We also now have a large collection of articles on what is new in other versions of Java, including Java9, and Java13.