2013年3月27日 星期三

簡介 Java 8 的 default method

原文網址:http://www.javacodegeeks.com/2013/03/introduction-to-default-methods-defender-methods-in-java-8.html

我們都知道 Java 裡頭的 interface 僅包含 method 的宣告、並沒有實作的部份, 任何 implement interface 但又不是 abstract class 的 class 必須提供這些 method 實作。 看看下面這個例子:

public interface SimpleInterface {
    public void doSomeWork();
}

class SimpleInterfaceImpl implements SimpleInterface{
    @Override
    public void doSomeWork() {
        System.out.println("Do Some Work implementation in the class");
    }

    public static void main(String[] args) {
        SimpleInterfaceImpl simpObj = new SimpleInterfaceImpl();
        simpObj.doSomeWork();
    }
}

如果在 SimpleInterface 裡頭加一個新的 method 會怎樣?

public interface SimpleInterface {
    public void doSomeWork();
    public void doSomeOtherWork();
}

在嘗試 compile 的時候會得到這個結果:

$javac .\SimpleInterface.java
.\SimpleInterface.java:18: error: SimpleInterfaceImpl is not abstract and does not 
override abstract method doSomeOtherWork() in SimpleInterface
class SimpleInterfaceImpl implements SimpleInterface{
^
1 error

這個限制導致要拓展、加強既有的 interface 跟 API 簡直難上加難。 在補強 Java 8 的 Collection API 以支援 lambda expression 時也遇到同樣困擾。 為了解決這個限制,Java 8 導入一個稱為 default method 的新觀念, 也有人稱之為 defender method 或 virtual extension method。 default method 會有預設的實作內容, 將有助於在不影響既有程式碼的前提下改善 interface。 看看這個例子就了解了:

public interface SimpleInterface {
    public void doSomeWork();

    //interface 中的 default method 要用「default」這個關鍵字
    default public void doSomeOtherWork(){
        System.out.println("DoSomeOtherWork implementation in the interface");
    }
}

class SimpleInterfaceImpl implements SimpleInterface{
    @Override
    public void doSomeWork() {
        System.out.println("Do Some Work implementation in the class");
    }
    /*
     * 不需要提供 doSomeOtherWork 的實作了
     */

    public static void main(String[] args) {
        SimpleInterfaceImpl simpObj = new SimpleInterfaceImpl();
        simpObj.doSomeWork();
        simpObj.doSomeOtherWork();
    }
}

輸出結果會是:

Do Some Work implementation in the class
DoSomeOtherWork implementation in the interface

這裡很簡短地介紹了 default,想要更深入了解的可以參考這份文件

沒有留言:

張貼留言