您的位置:首页 > 其它

第13周阅读程序——交通工具(1)

2016-05-25 17:21 274 查看
/*

*Copyright (c) 2016,烟台大学计算机学院

*All rights reserved.

*文件名称 :

*作 者 : 刘云

*完成日期 : 2016年5月25号

*版 本 号 : v6.0

*

*问题描述 : 阅读项目(交通工具)

*输入描述 : 无

*程序输出 :

*/
#include<iostream>
using namespace std;
class Vehicle  //交通工具
{
public:
void run() const
{
cout<<" run a vehicle. "<<endl;
}
};
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();
return 0;
}

运行结果:



问题回答:

     当基类指针指向派生类时,用指针调用同名函数执行的是——基类成员,

原因:

     因为指针为基类指针,所以调用时调用的是基类的成员函数。


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: