this和super关键字

this

this关键字代表当前的对象,this.属性代表当前对象的属性,this.方法代表当前对象的方法。

super

super关键字在对象内部使用,代表父类的对象。访问父类属性,super.属性,访问父类方法super.方法。

原文地址:https://www.cnblogs.com/sunqian/p/5218380.html