public class TestSuper2 { public static void main(String[] args) { //5.触发父类的两个构造函数创建对象 // Father2 f1 =new Father2();//触发父类的无参构造 Father2 f2 =new Father2(88);//触发父类的含参构造 //6.创建子类对象进行测试 Son2 s = new Son2(); } } //1.创建父类 cl...
在java中,子类中调用与父类同名的方法(即父类中被覆盖的方法)用super来调用即可,下面是示例: 子类父类的定义 publicclassb {voidshow() { System.out.println("b"); } }publicclasscextendsb {voidshow() { System.out.println("c"); }voidshowc() {super.show(); show(); } } 在main执行 packag...