如你所说A extends B
我帮你把代码模拟粗来
public class B
{
protected void methodC()
{
// TODO you codes here...
}
}
public class A extends B
{
}
这个分两种情况
子类A中没有Override父类方法,可以使用this:
public class A extends B
{
void yourmethod()
{
this.methodC();
//直接 methodC() 也可以
}
}
2. 子类中Override了父类方法,一定要使用super:
否则调用的将是本类中的方法而非父类
public class A extends B
{
public void yourmethod()
{
super.methodC(); //调用父类
}
@Override //覆盖时标签表上Override,这是个好的编程习惯
public void methodC()
{
// TODO your codes here...
// super.methodC() 这可以调用上一级的methodC()方法,而不是本methodC
// 如果不是使用super,而且本来没有这样的意愿
// 那么就会陷入一个伪死循环,并会在很多情况下抛出StackOverFlow
}
}
期望对你有用!