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新特性全部写在这里、
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。