Java 8 Default Methods Explained in 5 minutes

In my previous articles, we have looked at Java 8 Lambda Expressions and Streams. In this article will be looking at Defaults Methods which is another cool feature of Java 8.

Default methods enable us to add new functionalities to interfaces without breaking the classes that implements that interface. Lets 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 class MyClass implementing InterfaceA’s method saySomething(). Now lets add a new method called sayHi() to InterfaceA. By doing so, we have introduce a problem to class MyClass as it will not compile until we provide implementation for 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 implementation for the method sayHi() in class MyClass.

In ‘the strictest sense’, Default methods are a step backwards because they allow you to ‘pollute’ your interfaces with code. But they provide the most elegant and practical way to allow backwards 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 implementation for all default methods. So default methods provides 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 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 has 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.

Lets 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 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");
    }
}

Hopefully you have found this quick guide useful.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值