接口中的默认方法与静态方法

一、介绍

在Java8以前,接口中只能有抽象方法(public abstract 修饰的方法)跟全局静态常量(public static final 常量 );但是在Java8中,允许接口中包含具有具体实现的方法,该方法称为 “默认方法”,默认方法使用 default 关键字修饰,其次,Java8中,接口中还允许添加静态方法。

二、接口中的默认方法

接口默认方法的”类优先”原则 、

若一个接口中定义了一个默认方法,而另外一个父类或接口中 又定义了一个同名的方法时

第一种情况:

选择父类中的方法。如果一个父类提供了具体的实现,那么 接口中具有相同名称和参数的默认方法会被忽略。

示例代码:

1、新建一个接口MyInterface1.java,里面有个默认实现方法method1.

public interface MyInterface1 {

    default void method1() {
        System.out.println("MyInterface1中的默认方法");
    }
}

2、再建一个类FatherClass.java,里面同样有一个同名的实现方法method1.

public class FatherClass {

    public void method1() {
        System.out.println("FatherClass中的方法method1");
    }
    
}

3、创建一个子类SonClass.java,这个类继承FatherClass.java父类,并且实现MyInterface1接口。

import com.nieshenkuan.inter.MyInterface1;

public class SonClass extends FatherClass implements MyInterface1{

}

4、测试这个子类创建后,调用method1方法,会调用哪个类或者接口中的实现方法。

@Test
    public void test01() {
        SonClass sc=new SonClass();
        sc.method1();
    }

5、结果:调用类中的方法,并不是接口中的实现方法。

FatherClass中的方法method1

结论:接口默认方法的”类优先”原则 ,若一个接口中定义了一个默认方法,而另外一个父类或接口中 又定义了一个同名的方法时,先调用类中的同名方法

第二种情况:

接口冲突。如果一个父接口提供一个默认方法,而另一个接 口也提供了一个具有相同名称和参数列表的方法(不管方法 是否是默认方法),那么必须覆盖该方法来解决冲突,(接口中是可以多实现的)

1、新建一个MyInterface2.java接口,同MyInterface2接口中方法同名。

public interface MyInterface2 {
    
    default void method1() {
        System.out.println("MyInterface2中的默认方法");
    }
}

2、新建SonClass2类,实现了 MyInterface1,MyInterface2两个接口,这是会提醒你要实现哪个接口中的默认方法,如下:

import com.nieshenkuan.inter.MyInterface1;
import com.nieshenkuan.inter.MyInterface2;

public class SonClass2 implements MyInterface1,MyInterface2{

    @Override
    public void method1() {
        // TODO Auto-generated method stub
        MyInterface1.super.method1();
    }

}

3、测试

@Test
    public void test02() {
        SonClass2 sc=new SonClass2();
        sc.method1();
    }

4、结果

MyInterface1中的默认方法

结论:

如果一个类实现多个接口。并且这些接 口提供了一个具有相同名称和参数列表的方法(不管方法 是否是默认方法),那么必须覆盖该方法来解决冲突。子类必须指定覆盖哪个父类接口中的方法。

三、接口中的静态方法

在一开始建的MyInterface1中,创建一个静态方法say.

public interface MyInterface1 {

    default void method1() {
        System.out.println("MyInterface1中的默认方法");
    }
    
    public static void say() {
        System.out.println("这是MyInterface1中的静态方法");
    }
}

调用方式:

MyInterface1.say();

接口名.方法名();

作者:聂叼叼
链接:https://www.jianshu.com/p/38e648e07cfb
來源:简书


如果给你带来帮助,欢迎微信或支付宝扫一扫,赞一下。