摘要: 1 /* 2 final: 3 定义: 最终意思,可以修饰类,方法,变量 4 作用: 在继承过程中,final修饰的方法可以避免被方法重写覆盖掉 5 6 */ 7 8 class Fu 9 { 10 public final void show(){ 11 System.out.println("... 阅读全文
posted @ 2018-07-15 16:52 愚智! 阅读(130) 评论(0) 推荐(0)