在 C# 中,虚拟类是通过使用 virtual
关键字修饰类来实现的
以下是一个示例,演示如何在 C# 中实现虚拟类和方法重写:
using System;
// 定义一个虚拟类
public virtual class Animal
{
public virtual void MakeSound()
{
Console.WriteLine("The animal makes a sound");
}
}
// 定义一个继承自 Animal 的子类
public class Dog : Animal
{
// 重写 MakeSound 方法
public override void MakeSound()
{
Console.WriteLine("The dog barks");
}
}
public class Program
{
public static void Main()
{
// 创建一个 Dog 对象
Dog dog = new Dog();
// 调用重写后的 MakeSound 方法
dog.MakeSound(); // 输出 "The dog barks"
}
}
在这个示例中,我们定义了一个名为 Animal
的虚拟类,其中包含一个名为 MakeSound
的虚拟方法。然后,我们创建了一个名为 Dog
的子类,该类继承自 Animal
类并重写了 MakeSound
方法。最后,在 Main
方法中,我们创建了一个 Dog
对象并调用了重写后的 MakeSound
方法。