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();
}
}
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/net/116630.html
標籤:C#
上一篇:寫注冊表出錯了
