各位好,關於以下程式碼的執行結果,有些疑問:
public class Parent {
public String name = "Parent";
public void show() {
System.out.println("I am Parent. "+this.name);
}
public static void main(String...args) {
Parent.Son son = new Parent.Son();
Parent parent = son;
System.out.println("the name of Son: "+son.name);
System.out.println("the name of Parent: "+parent.name);
son.show();
parent.show();
}
static class Son extends Parent {
public String name = "Son";
@Override
public void show() {
System.out.println("I am Son. "+this.name);
}
}
}
執行結果:
the name of Son: Son //son.name
the name of Parent: Parent //parent.name
I am Son. Son //son.show
I am Son. Son //parent.show
我有問題的是,第二行的執行結果為何不是Son?我的想法是,雖然parent的型態為Paren
t,但實際上卻是由Son所產生的,所以這邊的parent.name應該是指
Son類別的成員name才是。不曉得是我那裡的觀念有錯,煩請解惑,謝謝。