作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基本上,我有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/
我是一名优秀的程序员,十分优秀!