本文介绍了如何限制子类中无法访问的父类中的方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

plz有人答复我...........

plz anybody reply me...........

推荐答案

public class myBase
   {
   ...
   private void methodA() {}
   protected void methodB() {}
   }
public class myDerived : myBase
   {
   ...
   private void methodC()
      {
      methodA();   //Illegal - compiler will complain.
      methodB();   //Legal
      }
   }


public class IAmYourDad
{
    public void Test()
    {
    }
}
public class IAmTheChild : IAmYourDad
{
    //this is not visible to Parent
    private string DoNotTellThisToMyDad()
    {
        return "Secret";
    }
}


这篇关于如何限制子类中无法访问的父类中的方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 15:41