public class Main {
public static void main(String[] args) {
test test = new test();
test.xxx(new zi());
}
}
class fu{
public void x(){
System.out.println("我是父");
}
}
class zi extends fu{
public void x(){
System.out.println("我重写了父类的x方法");
}
public void xx(){
System.out.println("我是子");
}
}
class test{
public void xxx(fu xxx){
xxx.x();
}
}
每天学多一点点 哪怕一点点 我都是进步.........
成功以基础首 谁不是那样过来的呢...
作者:咸瑜