亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

9分15秒左右,那個super()不加有什么影響呢。

加的話,是什么原因,不加的話有什么影響呢。

我在這先感謝大神回答我的問題啦~

正在回答

1 回答

不加其實也沒有影響,子類的無參或者有參構造函數都會默認調用父類的無參構造函數,老師這里可能只是強調一下Exception中默認構造函數做的工作吧。

public?class?TestExtends?{
????
????public?static?void?main(String[]?args)?{
????????new?Child();
??????System.out.println("-----------");
??????new?Child(1,"1");
????}
????
}

class?Parent?{
????
????protected?Integer?id;
????protected?String?name;

????public?Parent()?{
????????System.out.println("parent?no?arg?constructor");
????}

????public?Parent(Integer?id,?String?name)?{
????????this.id?=?id;
????????this.name?=?name;
????????System.out.println("parent?all?args?constructor");
????}
}

class?Child?extends?Parent{

????public?Child()?{
????????System.out.println("child?no?arg?constructor");
????}

????public?Child(Integer?id,?String?name)?{
????????this.id?=?id;
????????this.name?=?name;
????????System.out.println("child?all?args?constructor");
????}

}

打印

parent no arg constructor

child no arg?constructor

-----------

parent no arg constructor

child all args constructor


0 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消

9分15秒左右,那個super()不加有什么影響呢。

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號