C#编程:设计一个交通工具类Vehicle,包含的数据成员有车轮个数wheels和车重weigh

更新时间:2023-06-01 12:47:03 阅读: 评论:0

C#编程:设计⼀个交通⼯具类Vehicle,包含的数据成员有车轮个数wheels和车
重weigh
设计⼀个交通⼯具类Vehicle,包含的数据成员有车轮个数wheels和车重weight。以及带有这两个参数的构造⽅法,具有Run⽅法,Run中⽅法输出running字样。⼩车类Car是它的⼦类,其中增加了数据成员车载⼈数pasnger_load。Car类中有带参数的构造⽅法,重写Run ⽅法:输出Car is running。并重写ToString()⽅法:显⽰car中信息(显⽰车轮数、车重、车载⼈数)。最后编写主⽅法,定义car的对象,并调⽤Run⽅法,以及显⽰car中信息。
具体代码:
using System;
using System.Collections.Generic;
using System.Linq;
零食怎么画using System.Text;
描写海的句子using System.Threading.Tasks;
namespace ConsoleApplication6
{
class Program
{
static void Main(string[] args)
{
Car car =new Car(4,10000.0,5);
car.Run();
car.ToString();
Console.Read();
}
}
糕点
class Vehicle
{
private int wheels;
private double weight;
public int Wheels
{
t{ wheels =value;}
get{return wheels;}
many的近义词
}
public double Weight
{
t{ weight =value;}
get{return weight;}
}
public Vehicle(int wheels,double weight)
{
this.wheels = wheels;
专心this.weight = weight;
}
public virtual void Run()
{
Console.WriteLine("running");
}
}
class Car : Vehicle
{
private int pasnger_load;
public Car(int wheels,double weight,int pasnger_load)
:ba(wheels, weight)
{
this.pasnger_load = pasnger_load;
}
皓月当空下一句
public override void Run()
{
Console.WriteLine("Car is running");
}
public override string ToString()
{
Console.WriteLine("车轮数{0},车重{1},车载⼈数{2}", Wheels, Weight, pasnger_load);
return ba.ToString();
梦见牙齿掉了一颗}
令加瓦读什么}
}

本文发布于:2023-06-01 12:47:03,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/961397.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:数据   成员   构造   车轮   设计
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图