我有两个班级Person
和Student
,其中Student extends Person
,两个班级都有get
方法。
我从Student
创建了一个对象,我想调用这个对象。我如何超级超类的方法?或者还有其他方法吗?
答案 0 :(得分:0)
super
代码字作为超类的引用
因此,例如,get()
类中的Person
方法和Student
类中的另一个方法扩展了Person
。
要在get()
内调用Person
Student
方法,我们可以使用super.get()
。