我有父子關係類和一個覆蓋方法,我想只顯示父類的方法。指向Child類Object的父類引用。只調用父類方法(JAVA)
class Parent{
public void display(){
System.out.println("Parent class display....");
}
}
class Child extends Parent{
public void display(){
System.out.println("Child class display....");
}
}
public class Demo {
public static void main(String... args) {
Parent parent = new Child();
parent.display();
}
}
所需的輸出: - 父類顯示....
這可能嗎?
更好地添加到編程語言,你需要此工作標籤.... –
見http://stackoverflow.com/questions/6896504/java-inheritance-calling-superclass-method –
直接和您因爲您指的是Child對象,所以無法調用Parent方法。但是,您可以通過調用super.display() –