JS 与 trick 代码的运用及解析全攻略
686
2022-10-14
JDK8新特性_接口中也可以有方法
interface Inter{ //抽象方法 public abstract void show(); //default方法 public default void defaultPrint(){ System.out.println("defaultPrint 张三"); } //staict public static void staticPrint(){ System.out.println("statict 李四"); }}class InterImpl implements Inter{ public void show(){ System.out.println("重写接口中的方法"); }}class Demo01{ public static void main(String[] args){ Inter i = new InterImpl(); i.defaultPrint(); i.show(); // Demo01.java:24: 错误: 无法从静态上下文中引用非静态 方法 defaultPrint() // Inter.defaultPrint(); //正确用法 Inter.staticPrint(); }}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~