继承
super
super注意点:
1. super调用父类的构造方法,必须在构造方法的第一个
2. super 必须只能出现在子类的构造方法或方法中
3. super和this 不能同时调用构造方法
VS this:
代表的对象不同:
this: 本身调用者这个对象
super: 代表父类对象的应用
前提
this: 没有继承也可以使用
super: 只能在继承条件下才可以使用
构造方法
this: 本类的构造
super: 父类的构造
标签:构造方法,--,继承,面向对象,父类,super
From: https://www.cnblogs.com/always0708/p/16812078.html