为了账号安全,请及时绑定邮箱和手机立即绑定

c#.net中类的覆写OverRide

标签:
C#

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());
   }
}


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消