Appearance
JDK 8 允许接口中有默认方法实现。
public interface MyInterface { default String method() { return "default"; } }
默认方法向后兼容,不破坏现有实现。