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

博客介绍了C#.NET中类的覆写(OverRide)相关内容,聚焦于信息技术领域的后端开发知识,为开发者提供了该语言中类覆写方面的信息。

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

}
评论 5
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值