c# – 新手继承问题

前端之家收集整理的这篇文章主要介绍了c# – 新手继承问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不明白为什么我的输出不是我认为应该的.我认为应该是狗吠线断线猫咪.但没有什么.

码:

namespace ConsoleApplication2
{
  class Program
  {
    static void Main(string[] args)
    {
      Pets pet1 = new Dog();
      Pets pet2 = new Cat();
      pet1.Say();
      pet2.Say();
      Console.ReadKey();
    }
  }

  class Pets
  {
   public void Say() { }
  }

  class Dog : Pets
  {
   new public void Say() { Console.WriteLine("Dog barks."); }
  }

  class Cat : Pets 
  {
   new public void Say() { Console.WriteLine("Cat meows."); }
  }
}

我试图通过c# programming guide on MSDN,但是我觉得很难理解那里的一些例子.如果有人可以链接到一个很好的“假人遗产”网站,那将是非常感激的.

解决方法

将您的基类中的Say功能虚拟化,然后在派生类中覆盖此函数
namespace ConsoleApplication2
{
  class Program
  {
    static void Main(string[] args)
    {
      Pets pet1 = new Dog();
      Pets pet2 = new Cat();
      pet1.Say();
      pet2.Say();
      Console.ReadKey();
    }
  }

  class Pets
  {
   public virtual void Say() {
      Console.WriteLine("Pet makes generic noise");
 }
  }

  class Dog : Pets
  {
    public override void Say() { Console.WriteLine("Dog barks."); }
  }

  class Cat : Pets 
  {
    public override void Say() { Console.WriteLine("Cat meows."); }
  }
}
原文链接:/csharp/94436.html

猜你在找的C#相关文章