虚方法--重载

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
   public class Vehicle
    {
        public float weight;
        public Vehicle(float w)
        {
            weight = w;
        }
        public virtual void show()
        {
            Console.WriteLine("The weight of Vehicle is:" + weight);
        }
    }
    public class Car:Vehicle
    {
        int passengers;
    public Car(float w,int p):base(w)
        {
            passengers = p;
        }
        public override void show()
        {
            base.show();
            Console.WriteLine("The passengers of Car is:" + passengers);
        }
    }
    class Test
    {
        static void Main(string[] args)
        {
            Car c = new Car(6, 100);
            c.show();
            Console.Read();
        }
    }
}
posted @ 2019-10-18 20:22  打开太阳  阅读(242)  评论(0编辑  收藏  举报