在 C# 中覆盖
运行时多态具有方法覆盖,也称为动态绑定或后期绑定。它由抽象类和虚函数实现。抽象类包含抽象方法,这些方法由派生类实现。
让我们看一个抽象类的例子,它实现了运行时多态性并与 Overriding 一起工作 -
示例
using System;namespace PolymorphismApplication {
abstract class Shape {
public abstract int area();
}
class Rectangle: Shape {
private int length;
private int width;
public Rectangle( int a = 0, int b = 0) {
length = a;
width = b;
}
public override int area () {
Console.WriteLine("矩形类面积:");
return (width * length);
}
}
class RectangleTester {
static void Main(string[] args) {
Rectangle r = new Rectangle(10, 7);
double a = r.area();
Console.WriteLine("Area: {0}",a);
Console.ReadKey();
}
}
}
以上是 在 C# 中覆盖 的全部内容, 来源链接: utcz.com/z/361574.html