欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java8新特性之接口的static和default的使用

程序员文章站 2022-04-18 09:45:52
static方法 java8中为接口新增了一项功能:定义一个或者更多个静态方法。用法和普通的static方法一样。 接口中可以定义static方法,可通过接口名称.方法名()调...

static方法

java8中为接口新增了一项功能:定义一个或者更多个静态方法。用法和普通的static方法一样。

接口中可以定义static方法,可通过接口名称.方法名()调用,实现类不能继承static方法;

public interface interfacea {
  /**
   * 静态方法,不能被实现类重写
   */
  static void hello() {
    system.out.println("hello java8");
  }
}
 

使用方法:

public class test {
  public static void main(string[] args) {
    interfacea.hello();
  }
}
 

default方法

在接口中,增加default方法, 是为了既有的成千上万的java类库的类增加新的功能, 且不必对这些类重新进行设计。 比如, 只需在collection接口中增加default stream stream(), 相应的set和list接口以及它们的子类都包含此的方法, 不必为每个子类都重新copy这个方法。

接口中可以定义default方法,default修饰的方法有方法体,表示这个方法的默认实现,子类可以直接调用,可以选择重写或者不重写;

public interface human {

  /**
   * 必须被重写
   */
  void oldmethod();

  /**
   * 实现类可以选择重写,也可以不重写
   */
  default void hello(){
    system.out.println("hello human!");
  }
}
 

但是如果实现类同时实现了接口human和接口food接口,同时food接口中也定义了同名的default方法,那么实现类中必须重写两个方法。

public interface food {
  default void hello(){
    system.out.println("hello food!");
  }
}
 
public class person implements human,food {

  @override
  public void oldmethod() {
  }

  /**
   * 实现的多个接口中有方法签名相同的default方法时,实现类必须重写该方法
   */
  @override
  public void hello() {
    system.out.println("human eats food!");
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。