課程
/后端開發(fā)
/Java
/SpringBoot構(gòu)建電商基礎(chǔ)秒殺項目
加的話,是什么原因,不加的話有什么影響呢。
我在這先感謝大神回答我的問題啦~
2019-01-21
源自:SpringBoot構(gòu)建電商基礎(chǔ)秒殺項目 3-3
正在回答
不加其實也沒有影響,子類的無參或者有參構(gòu)造函數(shù)都會默認(rèn)調(diào)用父類的無參構(gòu)造函數(shù),老師這里可能只是強調(diào)一下Exception中默認(rèn)構(gòu)造函數(shù)做的工作吧。
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
-----------
child all args constructor
舉報
應(yīng)用SpringBoot快速搭建擁有用戶、商品、交易及秒殺活動的電商秒殺應(yīng)用。
1 回答4.3章節(jié)左右-itemDOMapper.insertSelective出錯
1 回答5分37秒,result.isHasErrors()是不是重復(fù)了?
3 回答創(chuàng)建UserDOMapper對象時報錯,但是不影響運行
1 回答請問老師用的IDEA版本是多少吖?最新版本IDEA對項目的構(gòu)建有沒有什么影響?
2 回答為什么加密密碼字段不放在UserDO中呢?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2019-01-22
不加其實也沒有影響,子類的無參或者有參構(gòu)造函數(shù)都會默認(rèn)調(diào)用父類的無參構(gòu)造函數(shù),老師這里可能只是強調(diào)一下Exception中默認(rèn)構(gòu)造函數(shù)做的工作吧。
打印
parent no arg constructor
child no arg?constructor
-----------
parent no arg constructor
child all args constructor