super.来调用 比如 this.test(); //子类中调用子类方法 super.test();//子类调用父类方法
在方法中用super.被重写的方法去调用
直接去new父类 A= new 父类();