科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道c#.net中类的覆写(OverRide)

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

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

   c#

作者:中国IT实验室 来源:中国IT实验室 2007年9月10日

关键字: 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());
   }

}

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章