第13周-任务1-抽象类-用车辆类去体会

【题目】阅读下面的程序
(任务1.1)请写出程序的执行结果,并在上机时对照理解
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();
} 

(任务1.2)如果将Vehicle类的定义修改为虚函数,其余不变,请写出程序的执行结果,并在上机时对照理解
class Vehicle 
{
public: 
	virtual void run() const { cout << "run a vehicle. "<<endl; } //(2) run()为虚函数
};

(任务1.3)如果将Vehicle类的定义修改为纯虚函数,找出main()函数中将使编译出错的行删除(或改为注释),请写出程序的执行结果,并在上机时对照理解
class Vehicle 
{
public: 
	virtual void run() const = 0; //(3) run()为纯虚函数
}; 

(任务1.4)提交博文,记录实验过程和结果,用自己的话概括你对虚函数、多态性和抽象类的理解。


【老贺懒一回】

自己思考、运行、对比,得来的也是自己的体会,老贺就此沉默一回了。



你可能感兴趣的:(Class,任务)