gpt4 book ai didi

java - 多级继承: Calling a method only ONE level higher from subclass

转载 作者:行者123 更新时间:2023-12-02 08:22:17 24 4
gpt4 key购买 nike

基本上,我有3节课

class abstract A{}
protected aMethod(){}

class abstract B extends A{
protected aMethod(){}
}

class C extends B{
// How do I call B.aMethod() from here? As super.aMethod()
// would call A.aMethod()?
}

查看代码。我想调用比最低级别高一级的方法。但是调用 super.aMethod() 会返回根类实现吗?

编辑:事实证明 super 确实只是提高了一级,天知道我在尝试什么......菜鸟错误,向大家道歉!

最佳答案

super.aMethod() 会完全按照您的要求进行操作。

关于java - 多级继承: Calling a method only ONE level higher from subclass,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5258328/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com