《多态和虚表》word版

《多态和虚表》word版

ID:30370098

大小:85.02 KB

页数:19页

时间:2018-12-29

《多态和虚表》word版_第1页
《多态和虚表》word版_第2页
《多态和虚表》word版_第3页
《多态和虚表》word版_第4页
《多态和虚表》word版_第5页
资源描述:

《《多态和虚表》word版》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、多态和虚表多态和虚表2011-06-0909:45多态的这个概念稍微有点模糊,如果想在一开始就想用清晰用语言描述它,让读者能够明白,似乎不太现实,所以我们先看如下代码://例程1#includeiostreamusingnamespacestd;classVehicle{public:Vehicle(floatspeed,inttotal){Vehicle:speed=speed;Vehicle:total=total;}voidShowMember(){coutspeed"

2、"totalendl;}protected:floatspeed;inttotal;};

3、classCar:publicVehicle{public:Car(intaird,floatspeed,inttotal):Vehicle(speed,total){Car:aird=aird;}voidShowMember(){coutspeed"

4、"total"

5、"airdendl;}protected:intaird;};voidmain(){Vehiclea(120,4);a.ShowMember();Carb(180,110,4);b.ShowMember();cin.get();}在c++中是允许派生类重载基类成员函数的,对于类的重载来说,明确的,不

6、同类的对象,调用其类的成员函数的时候,系统是知道如何找到其类的同名成员,上面代码中的a.ShowMember();,即调用的是Vehicle:ShowMember(),b.ShowMember();,即调用的是Car:ShowMemeber();。但是在实际工作中,很可能会碰到对象所属类不清的情况,下面我们来看一下派生类成员作为函数参数传递的例子,代码如下://例程2#includeiostreamusingnamespacestd;classVehicle{public:Vehicle(floatspeed,inttotal){Vehicle:speed=spe

7、ed;Vehicle:total=total;}voidShowMember(){coutspeed"

8、"totalendl;}protected:floatspeed;inttotal;};classCar:publicVehicle{public:Car(intaird,floatspeed,inttotal):Vehicle(speed,total){Car:aird=aird;}voidShowMember(){coutspeed"

9、"total"

10、"airdendl;}protected:intaird;};voidtest(Vehicle&temp){

11、temp.ShowMember();}voidmain(){Vehiclea(120,4);Carb(180,110,4);test(a);test(b);cin.get();}例子中,对象a与b分辨是基类和派生类的对象,而函数test的形参却只是Vehicle类的引用,按照类继承的特点,系统把Car类对象看做是一个Vehicle类对象,因为Car类的覆盖范围包含Vehicle类,所以test函数的定义并没有错误,我们想利用test函数达到的目的是,传递不同类对象的引用,分别调用不同类的,重载了的,ShowMember成员函数,但是程序的运行结果却出乎人们的意料,

12、系统分不清楚传递过来的基类对象还是派生类对象,无论是基类对象还是派生类对象调用的都是基类的ShowMember成员函数。为了要解决上述不能正确分辨对象类型的问题,c++提供了一种叫做多态性(polymorphism)的技术来解决问题,对于例程序1,这种能够在编译时就能够确定哪个重载的成员函数被调用的情况被称做先期联编(earlybinding),而在系统能够在运行时,能够根据其类型确定调用哪个重载的成员函数的能力,称为多态性,或叫滞后联编(latebinding),下面我们要看的例程3,就是滞后联编,滞后联编正是解决多态问题的方法。代码如下://例程3#inclu

13、deiostreamusingnamespacestd;classVehicle{public:Vehicle(floatspeed,inttotal){Vehicle:speed=speed;Vehicle:total=total;}virtualvoidShowMember()//虚函数{coutspeed"

14、"totalendl;}protected:floatspeed;inttotal;};classCar:publicVehicle{public:Car(intaird,floatspeed,inttotal):Vehicle(speed,total)

15、{Car:

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。