我在基类中实现了一个方法,如下所示:
class A
{
protected void f1()
{
}
}
class A1 : A
{
public void f2()
{
//Simple Calling
f1();
//Calling using base pointer
base.f1();
}
}
简单调用和使用基指针调用有什么区别?两种方式的优点是什么?