我是Java新手。在下面的代碼中,我很難理解這些概念。超級類Sub構造函數java
class A {
private Integer intr;
public A(Integer intr) {
this.inrt = intr;
}
public Integer getIntr() {
return intr;
}
}
class B extends A {
public B(Integer intr) { //Eclipse asking me to create this constructor.
super(intr);
}
}
我越來越困惑,爲什麼我需要創建那種構造爲月食暗示。那裏有什麼?
謝謝。我得到了我正在尋找的答案。 – 2014-09-05 14:31:46