C# 中的重写与影射
重写
在重写的过程中,你可以定义一个专门针对子类类型的行为,这意味着子类可以根据自己的需求实现父类方法。
让我们看一个实现重写的抽象类的示例 −
示例
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("Rectangle class area :"); 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(); } } }
影射
影射也称为方法隐藏。在影射中,可以使用父类的函数而不使用重写关键词。子类有自己的相同函数的版本。
使用 new 关键词执行影射并创建自己版本的基类函数。
让我们看一个示例 −
示例
using System; using System.Collections.Generic; class Demo { public class Parent { public string Display() { return "Parent Class!"; } } public class Child : Parent { public new string Display() { return "Child Class!"; } } static void Main(String[] args) { Child child = new Child(); Console.WriteLine(child.Display()); } }
广告