继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

c#.net中类的覆写OverRide

隔江千里
关注TA
已关注
手记 165
粉丝 37
获赞 179

c#.net中类的覆写(OverRide):

public class MyBase
{
   public virtual string Meth1()
   {
      return "MyBase-Meth1";
   }
   public virtual string Meth2()
   {
      return "MyBase-Meth2";
   }
   public virtual string Meth3()
   {
      return "MyBase-Meth3";
   }
}

class MyDerived : MyBase
{
   // Overrides the virtual method Meth1 using the override keyword:
   public override string Meth1()
   {
      return "MyDerived-Meth1";
   }
   // Explicitly hide the virtual method Meth2 using the new
   // keyword:
   public new string Meth2()
   {
      return "MyDerived-Meth2";
   }
   // Because no keyword is specified in the following declaration
   // a warning will be issued to alert the programmer that
   // the method hides the inherited member MyBase.Meth3():
   public string Meth3()
   {
      return "MyDerived-Meth3";
   }

   public static void Main()
   {
      MyDerived mD = new MyDerived();
      MyBase mB = (MyBase) mD;

      System.Console.WriteLine(mB.Meth1());
      System.Console.WriteLine(mB.Meth2());
      System.Console.WriteLine(mB.Meth3());
   }
}


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP