接口中默认方法和静态方法

1、默认方法

java8允许接口中包含具体实现的方法体,该方法是默认方法,它需要使用default关键字修饰

2、静态方法

java8中允许接口中定义静态方法,使用static关键字修饰

代码展示:

package com.chen.test.JAVA8Features.DefaultMethod; public interface DefaultMethodDemo {

default Integer addMethod(int a ,int b){
    System.out.println("我是默认方法");
    return a+b;
}
static void test(){
    System.out.println("我是静态方法");
}

}