最近在b站学习C#(九、重写与多态)(BV1wx411K7rb)

1.定义

(1)继承:向子类中添加父类没有的成员,子类对父类的横向扩展

(2)重写:纵向扩展,成员没有增加,但成员的版本增加了

(3)多态:基于重写的

2.重写案例(父类的成员需要是public或者protected)

class Program
{
    static void Main(string[] args)
    {
        Car car1 = new Car();
        car1.Run();
        // Car is running!
        Vehicle car2 = new Car();
        car2.Run();
        // Car is running!

        var v = new Vehicle();
        v.Run();
        // I'm running!
    }
}

class Vehicle
{
    public virtual void Run()
    {
        Console.WriteLine("I'm running!");
    }
}

class Car : Vehicle
{
    public override void Run()
    {
        Console.WriteLine("Car is running!");
    }
}

3.继承案例

class Program
{
    static void Main(string[] args)
    {
        Car car1 = new Car();
        car1.Run();
        // Car is running!
        Vehicle car2 = new Car();
        car2.Run();
        // I'm running!

        Vehicle v3 = new Vehicle();
        v3.Run();
        // I'm running!
    }
}

class Vehicle
{
    public void Run()
    {
        Console.WriteLine("I'm running!");
    }
}

class Car : Vehicle
{
    public void Run()
    {
        Console.WriteLine("Car is running!");
    }
}

学习用途,侵权立删;

参考文献

[1] https://www.yuque.com/yuejiangliu/dotnet

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值