如果我在 Java 中有这个结构:
class A{
private string Name;
public string getName() {
return this.Name;
}
class B extends A{
private string Name;
public string getName(){
return this.Name;
}
}
我创建了一个 B 类的对象,我想通过该对象访问继承的方法 getName()。我怎样才能做到这一点?来自 A 的方法 getName() 是否被 B 方法覆盖?