Java“部分”覆盖

发布于 2024-09-04 18:09:35 字数 209 浏览 3 评论 0原文

当重写 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

内心旳酸楚 2024-09-11 18:09:35
public class A extends B{

  @Override
  public void foo(){
    System.out.println("yep");
    super.foo(); // calls the method implemented in B
  }  
}
public class A extends B{

  @Override
  public void foo(){
    System.out.println("yep");
    super.foo(); // calls the method implemented in B
  }  
}
一腔孤↑勇 2024-09-11 18:09:35

只需调用 super.methodName() 即可调用该方法的超类型版本。

public class A extends B{
  @Override
  public void foo(){
    System.out.println("yep");
    super.foo(); // Here you call the supertype's foo()
  }
}

此外,这并不是“部分”覆盖该方法。您完全覆盖了它,但您只是使用了父级的一些功能。

Simply call super.methodName() to call your supertype's version of the method.

public class A extends B{
  @Override
  public void foo(){
    System.out.println("yep");
    super.foo(); // Here you call the supertype's foo()
  }
}

Also, this isn't 'partially' overriding the method. You are fully overriding it, but you are just using some of the parent's functionality.

美男兮 2024-09-11 18:09:35

Keywork super 的使用就是为了这个目的

super.foo();

The use of the Keywork super is meant for this

super.foo();
遗弃M 2024-09-11 18:09:35

您正在寻找super.foo()

You are looking for super.foo().

柠北森屋 2024-09-11 18:09:35

您可以致电

super.foo();

You can call

super.foo();
臻嫒无言 2024-09-11 18:09:35

试试这个:

super.foo()

Try this:

super.foo()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文