您的位置:首页 > 移动开发 > IOS开发

第十三周实验报告一

2012-05-21 11:19 393 查看
* 程序的版权和版本声明部分 
* Copyright (c) 2011, 烟台大学计算机学院学生 
* All rights reserved. 
* 文件名称: 
* 作者:李君凯 
* 完成日期: 2012年 5月 18日
* 版本号: 
*对任务及求解方法的描述部分
<span style="font-family:SimSun;font-size:16px;">#include <iostream>
using namespace std;

class Vehicle
{
public:
void run() const { cout << "run a vehicle. "<<endl; } //(2) run()为虚函数
};

class Car: public Vehicle
{
public:
void run() const {cout << "run a car. "<<endl;  }
};

class Airplane: public Vehicle
{
public:
void run() const {cout << "run a airplane. "<<endl;}
};

int main()
{
cout<<"(a) 直接用对象访问成员函数: "<<endl;
Vehicle v;
v.run();
Car car;
Airplane airplane;
car.run();
airplane.run();

cout<<"(b) 用指向基类的指针访问成员函数: "<<endl;
Vehicle *vp;
vp=&car;
vp->run();
vp=&airplane;
vp->run();
system("pause");
return 0;
}
</span>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  iostream class system 任务 c