如何在没有反射和动态代理的情况下简单地显式调用默认方法?

时间:2016-09-18 09:02:35

标签: java methods java-8 default

我正在阅读Java 8中的默认方法,我陷入了困境 - 有没有办法从接口调用默认方法而不实现它,或者使用动态代理?通过使用一种简单的方法,如下面的方法:

interface DefaultTestInterface{
    default void method1(){
        //default method
    }
}
class ImplementingClass implements DefaultTestInterface{
    public void method1(){
        //default method invocation in implementing method
        DefaultTestInterface.super.method1();
    }
    void method2(){
        //default method invocation in implementing class
        DefaultTestInterface.super.method1();
    }
}
public class Main {
    public static void main(String[] args) {
        //is there any way to simply invoke default method without using proxy and reflection?
    }
}

我读过类似的问题,但first仅与实施方法中的调用相关联,另外两个与dynamic Proxy using reflection reflection相关联。

这些解决方案非常复杂,我想知道是否有更简单的方法。我也阅读了这些文章,但我没有找到解决问题的方法。我将不胜感激任何帮助。

1 个答案:

答案 0 :(得分:6)

如果接口只有一个方法,或者它的所有方法都有默认实现,那么你需要做的就是创建一个匿名实现,实现你想要调用的方法:

(new DefaultTestInterface() {}).method1();

Demo.