欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#中Override关键字和New关键字的用法详解

程序员文章站 2022-11-22 11:38:04
c# 语言经过专门设计,以便不同库中的基类与派生类之间的版本控制可以不断向前发展,同时保持向后兼容。这具有多方面的意义。例如,这意味着在基类中引入与派生类中的某个成员具有相...

c# 语言经过专门设计,以便不同库中的基类与派生类之间的版本控制可以不断向前发展,同时保持向后兼容。这具有多方面的意义。例如,这意味着在基类中引入与派生类中的某个成员具有相同名称的新成员在 c# 中是完全支持的,不会导致意外行为。它还意味着类必须显式声明某方法是要重写一个继承方法,还是一个隐藏具有类似名称的继承方法的新方法。
在 c# 中,派生类可以包含与基类方法同名的方法。
基类方法必须定义为 virtual。

  • 如果派生类中的方法前面没有 new 或 override 关键字,则编译器将发出警告,该方法将有如存在 new 关键字一样执行操作。
  • 如果派生类中的方法前面带有 new 关键字,则该方法被定义为独立于基类中的方法。
  • 如果派生类中的方法前面带有 override 关键字,则派生类的对象将调用该方法,而不是调用基类方法。

可以从派生类中使用 base 关键字调用基类方法。

override、virtual 和 new 关键字还可以用于属性、索引器和事件中。
默认情况下,c# 方法为非虚方法。如果某个方法被声明为虚方法,则继承该方法的任何类都可以实现它自己的版本。若要使方法成为虚方法,必须在基类的方法声明中使用 virtual 修饰符。然后,派生类可以使用 override 关键字重写基虚方法,或使用 new 关键字隐藏基类中的虚方法。如果 override 关键字和 new 关键字均未指定,编译器将发出警告,并且派生类中的方法将隐藏基类中的方法。
为了在实践中演示上述情况,我们暂时假定公司 a 创建了一个名为 graphicsclass 的类,您的程序将使用此类。 graphicsclass 如下所示:

class graphicsclass
{
  public virtual void drawline() { }
  public virtual void drawpoint() { }
}

您的公司使用此类,并且您在添加新方法时将其用来派生自己的类:

class yourderivedgraphicsclass : graphicsclass
{
  public void drawrectangle() { }
}

您的应用程序运行正常,直到公司 a 发布了 graphicsclass 的新版本,类似于下面的代码:

class graphicsclass
{
  public virtual void drawline() { }
  public virtual void drawpoint() { }
  public virtual void drawrectangle() { }
}

现在,graphicsclass 的新版本中包含一个名为 drawrectangle 的方法。开始时,没有出现任何问题。新版本仍然与旧版本保持二进制兼容。已经部署的任何软件都将继续正常工作,即使新类已安装到这些软件所在的计算机系统上。在您的派生类中,对方法 drawrectangle 的任何现有调用将继续引用您的版本。
但是,一旦您使用 graphicsclass 的新版本重新编译应用程序,就会收到来自编译器的警告 cs0108。此警告提示您必须考虑希望 drawrectangle 方法在应用程序中的工作方式。
如果您希望自己的方法重写新的基类方法,请使用 override 关键字:

class yourderivedgraphicsclass : graphicsclass
{
  public override void drawrectangle() { }
}

override 关键字可确保派生自 yourderivedgraphicsclass 的任何对象都将使用 drawrectangle 的派生类版本。派生自 yourderivedgraphicsclass 的对象仍可以使用基关键字访问 drawrectangle 的基类版本:

base.drawrectangle();

如果您不希望自己的方法重写新的基类方法,则需要注意以下事项。为了避免这两个方法之间发生混淆,可以重命名您的方法。这可能很耗费时间且容易出错,而且在某些情况下并不可行。但是,如果您的项目相对较小,则可以使用 visual studio 的重构选项来重命名方法。

或者,也可以通过在派生类定义中使用关键字 new 来防止出现该警告:

class yourderivedgraphicsclass : graphicsclass
{
  public new void drawrectangle() { }
}

使用 new 关键字可告诉编译器您的定义将隐藏基类中包含的定义。这是默认行为。
重写和方法选择
当在类中指定方法时,如果有多个方法与调用兼容(例如,存在两种同名的方法,并且其参数与传递的参数兼容),则 c# 编译器将选择最佳方法进行调用。下面的方法将是兼容的:

public class derived : base
{
  public override void dowork(int param) { }
  public void dowork(double param) { }
}

在 derived 的一个实例中调用 dowork 时,c# 编译器将首先尝试使该调用与最初在 derived 上声明的 dowork 版本兼容。重写方法不被视为是在类上进行声明的,而是在基类上声明的方法的新实现。仅当 c# 编译器无法将方法调用与 derived 上的原始方法匹配时,它才尝试将该调用与具有相同名称和兼容参数的重写方法匹配。例如:

int val = 5;
derived d = new derived();
d.dowork(val); // calls dowork(double).

由于变量 val 可以隐式转换为 double 类型,因此 c# 编译器将调用 dowork(double),而不是 dowork(int)。有两种方法可以避免此情况。首先,避免将新方法声明为与虚方法同名。其次,可以通过将 derived 的实例强制转换为 base 来使 c# 编译器搜索基类方法列表,从而使其调用虚方法。由于是虚方法,因此将调用 derived 上的 dowork(int) 的实现。例如:

((base)d).dowork(val); // calls dowork(int) on derived.

何时使用 override 和 new 关键字
在 c# 中,派生类中方法的名称可与基类中方法的名称相同。可通过使用 new 和 override 关键字指定方法互动的方式。 override 修饰符 extends 基类方法,且 new 修饰符将其“隐藏”起来。这种区别在本主题中的示例显示出来。
在控制台应用程序中,声明下面的 baseclass 和 derivedclass 两个类. derivedclass 继承自 baseclass。

class baseclass
{
  public void method1()
  {
    console.writeline("base - method1");
  }
}

class derivedclass : baseclass
{
  public void method2()
  {
    console.writeline("derived - method2");
  }
}

在 main 方法中,声明变量 bc、dc 和 bcdc。

  • bc 的类型为 baseclass,并且其值的类型为 baseclass。
  • dc的类型为 derivedclass,并且其值的类型为 derivedclass。
  • bcdc的类型为 baseclass,并且其值的类型为 derivedclass。这是要密切注意的变量。

由于 bc 和 bcdc 具有类型 baseclass,因此,除非您使用强制转换,否则它们只会直接访问 method1。变量 dc 可以访问 method1 和 method2。下面的代码演示这些关系。

class program
{
  static void main(string[] args)
  {
    baseclass bc = new baseclass();
    derivedclass dc = new derivedclass();
    baseclass bcdc = new derivedclass();

    bc.method1();
    dc.method1();
    dc.method2();
    bcdc.method1();
  }
  // output:
  // base - method1
  // base - method1
  // derived - method2
  // base - method1
}

接下来,将以下 method2 方法添加到 baseclass。此方法的签名与 derivedclass 中 method2 方法的签名相匹配。

public void method2()
{
  console.writeline("base - method2");
}

由于 baseclass 现在有 method2 方法,因此可以为 baseclass 变量 bc 和 bcdc 添加第二个调用语句,如下面的代码所示。

bc.method1();
bc.method2();
dc.method1();
dc.method2();
bcdc.method1();
bcdc.method2();


当生成项目时,您将看到在 baseclass 中添加 method2 方法将引发警告。警告提示,derivedclass 中的 method2 方法将 method2 方法隐藏在 baseclass 中。如果要获得该结果,则建议您使用 method2 定义中的 new 关键字。或者,可以重命名 method2 方法之一来解决警告,但这始终不实用。
在添加 new 之前,运行该程序以查看其他调用语句生成的输出。显示以下结果。

输出:

base - method1
base - method2
base - method1
derived - method2
base - method1
base - method2

new 关键字可以保留生成输出的关系,但它将取消警告。具有 baseclass 类型的变量继续访问 baseclass 成员,具有 derivedclass 类型的变量首先继续访问 derivedclass 中的成员,然后再考虑从 baseclass 继承的成员.
要禁止显示警告,请向 derivedclass 中的 method2 定义添加 new 修饰符,如下面的示例所示:可在 public 前后添加修饰符。

public new void method2()
{
  console.writeline("derived - method2");
}

再次运行该程序以确认没有更改输出。还确认警告不再出现。通过使用 new,您断言您了解它修改的成员将隐藏从基类继承的成员。关于通过继承隐藏名称的更多信息,请参见 new 修饰符(c# 参考)。
要将此行为与使用 override 的效果进行对比,请将以下方法添加到 derivedclass。可在 public 的前面或后面添加 override 修饰符。

public override void method1()
{
  console.writeline("derived - method1");
}

将 virtual 修饰符添加到 baseclass 中的 method1 的定义。可在 public 的前面或后面添加 virtual 修饰符。

public virtual void method1()
{
  console.writeline("base - method1");
}

再次运行项目。尤其请注意下面输出的最后两行。

输出:

base - method1
base - method2
derived - method1
derived - method2
derived - method1
base - method2

使用 override 修饰符使 bcdc 能够访问 derivedclass 中定义的 method1 方法。通常,这是继承层次结构中所需的行为。让具有从派生类创建的值的对象使用派生类中定义的方法。通过使用 override 扩展基类方法可实现该行为。
下面的代码包括完整的示例。

using system;
using system.text;

namespace overrideandnew
{
  class program
  {
    static void main(string[] args)
    {
      baseclass bc = new baseclass();
      derivedclass dc = new derivedclass();
      baseclass bcdc = new derivedclass();

      // the following two calls do what you would expect. they call
      // the methods that are defined in baseclass.
      bc.method1();
      bc.method2();
      // output:
      // base - method1
      // base - method2


      // the following two calls do what you would expect. they call
      // the methods that are defined in derivedclass.
      dc.method1();
      dc.method2();
      // output:
      // derived - method1
      // derived - method2


      // the following two calls produce different results, depending 
      // on whether override (method1) or new (method2) is used.
      bcdc.method1();
      bcdc.method2();
      // output:
      // derived - method1
      // base - method2
    }
  }

  class baseclass
  {
    public virtual void method1()
    {
      console.writeline("base - method1");
    }

    public virtual void method2()
    {
      console.writeline("base - method2");
    }
  }

  class derivedclass : baseclass
  {
    public override void method1()
    {
      console.writeline("derived - method1");
    }

    public new void method2()
    {
      console.writeline("derived - method2");
    }
  }
}


以下示例显示了不同上下文中的类似行为。该示例定义了三个类:一个名为 car 的基类,和两个由其派生的 convertiblecar 和 minivan。基类中包含 describecar 方法。该方法给出了对一辆车的基本描述,然后调用 showdetails 来提供其他的信息。这三个类中的每一个类都定义了 showdetails 方法。 new 修饰符用于定义 convertiblecar 类中的 showdetails。 override 修饰符用于定义 minivan 类中的 showdetails。

// define the base class, car. the class defines two methods,
// describecar and showdetails. describecar calls showdetails, and each derived
// class also defines a showdetails method. the example tests which version of
// showdetails is selected, the base class method or the derived class method.
class car
{
  public void describecar()
  {
    system.console.writeline("four wheels and an engine.");
    showdetails();
  }

  public virtual void showdetails()
  {
    system.console.writeline("standard transportation.");
  }
}

// define the derived classes.

// class convertiblecar uses the new modifier to acknowledge that showdetails
// hides the base class method.
class convertiblecar : car
{
  public new void showdetails()
  {
    system.console.writeline("a roof that opens up.");
  }
}

// class minivan uses the override modifier to specify that showdetails
// extends the base class method.
class minivan : car
{
  public override void showdetails()
  {
    system.console.writeline("carries seven people.");
  }
}

该示例测试被调用的 showdetails 版本。以下方法,testcars1 为每个类提供了一个实例,并在每个实例上调用 describecar。

public static void testcars1()
{
  system.console.writeline("\ntestcars1");
  system.console.writeline("----------");

  car car1 = new car();
  car1.describecar();
  system.console.writeline("----------");


  // notice the output from this test case. the new modifier is
  // used in the definition of showdetails in the convertiblecar
  // class. 

  convertiblecar car2 = new convertiblecar();
  car2.describecar();
  system.console.writeline("----------");

  minivan car3 = new minivan();
  car3.describecar();
  system.console.writeline("----------");
}


testcars1 生成以下输出:尤其请注意 car2 的结果,该结果可能不是您所需的内容。对象的类型是 convertiblecar,但 describecar 不会访问 convertiblecar 中定义的 showdetails 版本,因为方法已声明包含 new 修饰符,而不是 override 修饰符。因此,convertiblecar 对象显示与 car 对象相同的说明。比较 car3 的结果,它是一个 minivan 对象。在这种情况下,在 minivan 类中声明的 showdetails 方法重写 car 类中声明的 showdetails 方法,显示的说明描述微型面包车。

// testcars1
// ----------
// four wheels and an engine.
// standard transportation.
// ----------
// four wheels and an engine.
// standard transportation.
// ----------
// four wheels and an engine.
// carries seven people.
// ----------

testcars2 创建 car 类型的对象列表。对象的值由 car、convertiblecar 和 minivan 类实例化而来。 describecar 是调用列表中的每个元素。以下代码显示了 testcars2 的定义。

public static void testcars2()
{
  system.console.writeline("\ntestcars2");
  system.console.writeline("----------");

  var cars = new list<car> { new car(), new convertiblecar(), 
    new minivan() };

  foreach (var car in cars)
  {
    car.describecar();
    system.console.writeline("----------");
  }
}

显示以下输出。请注意,此输出与由 testcars1 显示的输出相同。 convertiblecar 类的 showdetails 方法不被调用,无论对象的类型是 convertiblecar,如在 testcars1 中,还是 car,如在 testcars2 中。相反,car3 在两种情况下都从 minivan 类调用 showdetails 方法,无论它具有类型 minivan 还是类型 car。

// testcars2
// ----------
// four wheels and an engine.
// standard transportation.
// ----------
// four wheels and an engine.
// standard transportation.
// ----------
// four wheels and an engine.
// carries seven people.
// ----------

完成示例的方法 testcars3 和 testcars4。这些方法直接调用 showdetails,首先从宣布具有类型 convertiblecar 和 minivan (testcars3) 的对象调用,然后从具有类型 car (testcars4) 的对象调用。以下代码定义了这两种方法。

public static void testcars3()
{
  system.console.writeline("\ntestcars3");
  system.console.writeline("----------");
  convertiblecar car2 = new convertiblecar();
  minivan car3 = new minivan();
  car2.showdetails();
  car3.showdetails();
}

public static void testcars4()
{
  system.console.writeline("\ntestcars4");
  system.console.writeline("----------");
  car car2 = new convertiblecar();
  car car3 = new minivan();
  car2.showdetails();
  car3.showdetails();
}

该方法产生下面的输出,它对应本主题中第一个示例的结果。

// testcars3
// ----------
// a roof that opens up.
// carries seven people.

// testcars4
// ----------
// standard transportation.
// carries seven people.

以下代码显示了整个项目及其输出。

using system;
using system.collections.generic;
using system.linq;
using system.text;

namespace overrideandnew2
{
  class program
  {
    static void main(string[] args)
    {
      // declare objects of the derived classes and test which version
      // of showdetails is run, base or derived.
      testcars1();

      // declare objects of the base class, instantiated with the
      // derived classes, and repeat the tests.
      testcars2();

      // declare objects of the derived classes and call showdetails
      // directly.
      testcars3();

      // declare objects of the base class, instantiated with the
      // derived classes, and repeat the tests.
      testcars4();
    }

    public static void testcars1()
    {
      system.console.writeline("\ntestcars1");
      system.console.writeline("----------");

      car car1 = new car();
      car1.describecar();
      system.console.writeline("----------");

      // notice the output from this test case. the new modifier is
      // used in the definition of showdetails in the convertiblecar
      // class. 
      convertiblecar car2 = new convertiblecar();
      car2.describecar();
      system.console.writeline("----------");

      minivan car3 = new minivan();
      car3.describecar();
      system.console.writeline("----------");
    }

输出:

testcars1
----------
four wheels and an engine.
standard transportation.
----------
four wheels and an engine.
standard transportation.
----------
four wheels and an engine.
carries seven people.
----------


 

    public static void testcars2()
    {
      system.console.writeline("\ntestcars2");
      system.console.writeline("----------");

      var cars = new list<car> { new car(), new convertiblecar(), 
        new minivan() };

      foreach (var car in cars)
      {
        car.describecar();
        system.console.writeline("----------");
      }
    }

输出:

testcars2
----------
four wheels and an engine.
standard transportation.
----------
four wheels and an engine.
standard transportation.
----------
four wheels and an engine.
carries seven people.
----------


    public static void testcars3()
    {
      system.console.writeline("\ntestcars3");
      system.console.writeline("----------");
      convertiblecar car2 = new convertiblecar();
      minivan car3 = new minivan();
      car2.showdetails();
      car3.showdetails();
    }

输出:       

testcars3
----------
a roof that opens up.
carries seven people.

 

    public static void testcars4()
    {
      system.console.writeline("\ntestcars4");
      system.console.writeline("----------");
      car car2 = new convertiblecar();
      car car3 = new minivan();
      car2.showdetails();
      car3.showdetails();
    }
    // output:
    // testcars4
    // ----------
    // standard transportation.
    // carries seven people.
  }



  // define the base class, car. the class defines two virtual methods,
  // describecar and showdetails. describecar calls showdetails, and each derived
  // class also defines a showdetails method. the example tests which version of
  // showdetails is used, the base class method or the derived class method.
  class car
  {
    public virtual void describecar()
    {
      system.console.writeline("four wheels and an engine.");
      showdetails();
    }

    public virtual void showdetails()
    {
      system.console.writeline("standard transportation.");
    }
  }


  // define the derived classes.

  // class convertiblecar uses the new modifier to acknowledge that showdetails
  // hides the base class method.
  class convertiblecar : car
  {
    public new void showdetails()
    {
      system.console.writeline("a roof that opens up.");
    }
  }

  // class minivan uses the override modifier to specify that showdetails
  // extends the base class method.
  class minivan : car
  {
    public override void showdetails()
    {
      system.console.writeline("carries seven people.");
    }
  }

}