1.default关键字:
public interface Test {



default void  doSomeThing(){
    
    
    System.out.println("Hello!");
    
}

}
public class Test1 implements Test{

}
public class Main {

public static void main(String[] args) {

    
new Test1().doSomeThing();

}

}

输出:hello!
笔记本快没电了。先mark。我会将所有的JAVA8新特性全部写在这里、


happyfish
2.4k 声望66 粉丝

[链接]


引用和评论

0 条评论