C++类和对象 简单编程题目

开发一个交通工具Vechile的层次体系。创建四个类Vechile、Ship、Car、Truck。(1)Vechile类有名称、颜色、型号三个属性,有print()和ho... 开发一个交通工具Vechile 的层次体系。创建四个类Vechile 、Ship 、Car、Truck 。

(1) Vechile 类有名称、颜色、型号三个属性,有print()和horn()// 鸣笛 两个方法

(2 ) Ship 和car 从vechile 类继承而来,Truck 从Car 继承而来

(3 ) 实例化的派生类对象插入到一个Vechile 容器中,对于容器内的每个对象,输出

喇叭声和基本信息。
接下来40分钟内给出答案再加15分
展开
 我来答
金水金名
2013-05-31 · 超过10用户采纳过TA的回答
知道答主
回答量:23
采纳率:0%
帮助的人:26.8万
展开全部
#include <iostream>
#include <vector>
#include <string>
using namespace std;

class Vechile
{
public:
virtual void print(){
cout << endl
<< "Name: " << name << endl
<< "Color: " << color << endl
<< "Type: " << type << endl;
}
virtual void horn() = 0;
protected:
string name;
string color;
string type;
};

class Ship : public Vechile
{
public:
Ship( string n, string c, string t ){
name = n;
color = c;
type = t;
}
~Ship(){}
void horn(){
cout << "Ship~" << endl;
}
};

class Car : public Vechile
{
public:
Car( string n, string c, string t ){
name = n;
color = c;
type = t;
}
~Car(){}
void horn(){
cout << "Car~" << endl;
}
};

class Truck : public Car
{
public:
Truck( string n, string c, string t ) : Car( n, c, t ){}
~Truck(){}
void horn(){
cout << "Truck~" << endl;
}
};

int main()
{
vector<Vechile*> vec( 3 );
vec[0] = new Ship( "ship", "white", "123" );
vec[1] = new Car( "car", "black", "456" );
vec[2] = new Truck( "truck", "blue", "789" );

for ( int i = 0; i < 3; i++ )
{
vec[i] -> print();
vec[i] -> horn();
}

return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式