(一)接口定义加强
1)JDK1.8之前已有的功能汇总
1.interface修饰
2.定义常量,抽象方法
3.接口可以继承多个接口;抽象类可以实现接口;接口不能继承抽象类
4.子类可以实现多个接口
5.接口是面向对象三大特性中多态的体现:定义标准,表达能力,在分布式开发中暴露远程服务方法
2)JDK1.8新增
6.提供两个新结构:
可以使用default来定义普通方法,需要通过对象调用
普通方法子类可以选择性覆写
可以使用static来定义静态方法,通过接口名就可以调用
interface IInterface{
void test();
default void print() {
System.out.println("接口中所有子类都有此方法");
}
static void fun() {
System.out.println("接口的静态方法");
}
}
class InterfaceImpl implements IInterface{
public void test() {
}
}
public class TestsInterface {
public static void main(String[] args) {
IInterface iInterface = new InterfaceImpl();
iInterface.test();
iInterface.print();
IInterface.fun();
}
}