摘要: 在子类中,若要调用父类中被覆盖的方法,可以使用super关键字。 package text;class Parent { int x; public Parent() { System.out.println("Parent Created1"); } public void show(){ Sys 阅读全文
posted @ 2017-11-10 22:39 肥鹅PU火 阅读(2518) 评论(0) 推荐(0)