Java“部分”覆盖
当重写 Java 中的方法时,是否可以调用“原始”方法。例如:
public class A extends B{
@Override
public void foo(){
System.out.println("yep");
// Then execute foo() as it's defined in B
}
}
When overriding a method in Java is it possible to call the "original" one. For example:
public class A extends B{
@Override
public void foo(){
System.out.println("yep");
// Then execute foo() as it's defined in B
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
只需调用
super.methodName()
即可调用该方法的超类型版本。此外,这并不是“部分”覆盖该方法。您完全覆盖了它,但您只是使用了父级的一些功能。
Simply call
super.methodName()
to call your supertype's version of the method.Also, this isn't 'partially' overriding the method. You are fully overriding it, but you are just using some of the parent's functionality.
Keywork super 的使用就是为了这个目的
The use of the Keywork super is meant for this
您正在寻找
super.foo()
。You are looking for
super.foo()
.您可以致电
You can call
试试这个:
Try this: