• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

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

发布: 2007-7-14 20:11 | 作者: 佚名    | 来源: 网络转载     | 查看: 12次 | 进入软件测试论坛讨论

领测软件测试网 C# 程序员参考--版本控制教程:

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

教程

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

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

示例

// versioning.cs// CS0114 expectedpublic 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-Meth1MyBase-Meth2MyBase-Meth3

代码讨论

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

class Base {}class Derived: Base{   public void F() {}}

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

class Base {   public void F() {}}class Derived: Base{   public void F() {}}

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

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网