super
super关键字是父类的意思,用法是super. 表示调用父类中的成员。
一般用来和this区分
this
this表示的当前类中,this. 表示调用当前类中的成员
final
final修饰词,我的理解就是断子绝孙修饰词,被修饰的变量变为常量 final int age =10,无法再次赋值;被修饰的类是最终类,例如public final class String,无法被继承;被修饰的方法无法被重写。
super
super关键字是父类的意思,用法是super. 表示调用父类中的成员。
一般用来和this区分
this
this表示的当前类中,this. 表示调用当前类中的成员
final
final修饰词,我的理解就是断子绝孙修饰词,被修饰的变量变为常量 final int age =10,无法再次赋值;被修饰的类是最终类,例如public final class String,无法被继承;被修饰的方法无法被重写。