Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 232 Bytes

File metadata and controls

9 lines (6 loc) · 232 Bytes

接口 Interface

接口是抽象方法的集合。一个类实现一个或多个接口,因此继承了接口的抽象方法.

接口的特点

  • 不能实例化
  • 没有构造体
  • 所有方法都是抽象的 public static