当前位置:首页 > 全部子站 > 备课网 > 学院

C# 程序员参考--版本控制教学文章

来源:长理培训发布时间:2017-08-20 20:19:20

 本教程使用 override  new 关键字来演示 C# 中的版本控制。版本控制在基类和派生类衍生时维护它们之间的兼容性。

教程

C# 语言被设计为不同库中的基类和派生类之间的版本控制可以衍生,并保持向后兼容。例如,这意味着在基类中引入与派生类中的某个成员名称相同的新成员不是错误。它还意味着类必须显式声明某方法是要重写一个继承方法,还是一个仅隐藏具有类似名称的继承方法的新方法。

在 C# 中,默认情况下方法不是虚拟的。若要使方法成为虚拟方法,必须在基类的方法声明中使用 virtual 修饰符。然后,派生类可以使用 override 关键字重写基虚拟方法,或使用 new 关键字隐藏基类中的虚拟方法。如果 override 关键字和 new 关键字均未指定,编译器将发出警告,并且派生类中的方法将隐藏基类中的方法。下面的示例在实际操作中展示这些概念。

示例

// versioning.cs



// CS0114 expected



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



   }



}

输出

MyDerived-Meth1



MyBase-Meth2



MyBase-Meth3

代码讨论

从派生类隐藏基类成员在 C# 中不是错误。该功能使您可以在基类中进行更改,而不会破坏继承该基类的其他库。例如,某个时候可能有以下类:

class Base {}



class Derived: Base



{



   public void F() {}



}

稍后基类可能演变为添加了一个 void 方法 F(),如下所示:

class Base 



{



   public void F() {}



}



class Derived: Base



{



   public void F() {}



}

因此,在 C# 中,基类和派生类都可以自由演变,并能够维持二进制兼容性。

 

责编:杨粟梅

发表评论(共0条评论)
请自觉遵守互联网相关政策法规,评论内容只代表网友观点,发表审核后显示!

国家电网校园招聘考试直播课程通关班

  • 讲师:刘萍萍 / 谢楠
  • 课时:160h
  • 价格 4580

特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关

配套通关班送国网在线题库一套

课程专业名称
讲师
课时
查看课程

国家电网招聘考试录播视频课程

  • 讲师:崔莹莹 / 刘萍萍
  • 课时:180h
  • 价格 3580

特色解密新课程高频考点,免费学习,助力一次通关

配套全套国网视频课程免费学习

课程专业名称
讲师
课时
查看课程
在线题库
面授课程更多>>
图书商城更多>>
在线报名
  • 报考专业:
    *(必填)
  • 姓名:
    *(必填)
  • 手机号码:
    *(必填)
返回顶部