this代表本类对应的引用
super代表父类存储空间的标识
怎么用?
A:调用成员变量
this.成员变量
super.成员变量
B:调用构造方法
this(…)
super(…)
C:调用成员方法
this.成员方法
super.成员方法
this代表本类对应的引用
super代表父类存储空间的标识
怎么用?
A:调用成员变量
this.成员变量
super.成员变量
B:调用构造方法
this(…)
super(…)
C:调用成员方法
this.成员方法
super.成员方法