子类可以从其父类中调用私有方法吗?

时间:2019-12-06 11:16:19

标签: java inheritance polymorphism

输出为“ Hey from A”。您能解释一下为什么不是“ B嗨”吗?

public class A {
    private void print() {
        System.out.println("Hey from A");
    }
    public void getInfo() {
        print();
    }
}
public class B extends A {
    public void print() {
        System.out.println("Hey from B");
    }

    public static void main(String args[]) {
        B b= new B();
        b.getInfo();
    }
}

0 个答案:

没有答案