W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
public class Superclass {
public void printMethod() { System.out.println("Printed in Superclass."); } }
下面是一個(gè)子類 (subclass), 叫做 Subclass, 覆寫了 printMethod():
public class Subclass extends Superclass {
// overrides printMethod in Superclass public void printMethod() { super.printMethod(); System.out.println("Printed in Subclass"); } public static void main(String[] args) { Subclass s = new Subclass(); s.printMethod(); } }
輸出
Printed in Superclass. Printed in Subclass
1. 調(diào)用父類的構(gòu)造函數(shù)
使用 **super** 關(guān)鍵字調(diào)用父類的構(gòu)造函數(shù). 下面的 MountainBike 類是 Bicycle 類的子類. 它調(diào)用了父類的構(gòu)造方法并加入了自己的初始化代碼:
public MountainBike(int startHeight, int startCadence, int startSpeed, int startGear) { super(startCadence, startSpeed, startGear); seatHeight = startHeight; }
調(diào)用父類的構(gòu)造體必須放在**第一行**.
使用
super();
或者:
super(parameter list);
通過 super(), 父類的無參構(gòu)造體會(huì)被調(diào)用. 通過 super(parameter list), 父類對(duì)應(yīng)參數(shù)的構(gòu)造體會(huì)被調(diào)用.
注意: 構(gòu)造體如果沒有顯式的調(diào)用父類的構(gòu)造體, Java 編譯器自動(dòng)調(diào)用父類的無參構(gòu)造. 如果父類沒有無參構(gòu)造, 就會(huì)報(bào)錯(cuò) ( compile-time error).
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: