版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、第八章 多态性目录8.1 多态性概述8.2 运算符重载8.3 虚函数8.4 抽象类8.5 程序实例变步长梯形积分算法求解函数的定积分8.6 综合实例对个人银行账户管理程序的改进8.7 深度探索8.8 小结28.1 多态性概述多态是指操作接口具有表现多种形态的能力,即能根据操作环境的不同采用不同的处理方式。多态性是面向对象系统的主要特性之一,在这样的系统中,一组具有相同基本语义的方法能在同一接口下为不同的对象服务。C+语言支持的多态性可以按其实现的时机分为编译时多态和运行时多态两类。38.1 多态性概述8.1.1 多态的类型多态的类型重载多态强制多态包含多态参数多态C+不但提供了固有的多态性,还
2、提供了实现自定义多态性的手段。48.1 多态性概述8.1.2 多态的实现多态的种类编译时的多态运行时的多态绑定是指把一个标识符名和一个存储地址联系在一起的过程编译时的多态绑定工作在编译连接阶段完成的情况称为静态绑定。运行时的多态绑定工作在程序运行阶段完成的情况称为动态绑定58.1 多态性概述8.2 运算符重载用“+”、“-”能够实现复数的加减运算吗?实现复数加减运算的方法 重载“+”、“-”运算符运算符重载是对已有的运算符赋予多重含义,使同一个运算符作用于不同类型的数据时导致不同的行为。68.2.1 运算符重载的规则C+ 几乎可以重载全部的运算符,而且只能够重载C+中已经有的。不能重载的运算符
3、举例:“.”、“.*”、“:”、“?:”重载之后运算符的优先级和结合性都不会改变。运算符重载是针对新类型数据的实际需要,对原有运算符进行适当的改造。两种重载方式:重载为类的非静态成员函数和重载为非成员函数。78.2 运算符重载8.2.2 运算符重载为成员函数声明形式函数类型 operator 运算符(形参) .重载为类成员函数时 参数个数=原操作数个数-1(后置+、-除外)重载为非成员函数时 参数个数=原操作数个数,且至少应该有一个自定义类型的形参。88.2 运算符重载8.2.2 运算符重载为成员函数(续)双目运算符 B如果要重载 B 为类成员函数,使之能够实现表达式 oprd1 B oprd
4、2,其中 oprd1 为A 类对象,则 B 应被重载为 A 类的成员函数,形参类型应该是 oprd2 所属的类型。经重载后,表达式 oprd1 B oprd2 相当于 oprd1.operator B(oprd2)98.2 运算符重载例8-1复数类加减法运算重载成员函数形式 将“+”、“-”运算重载为复数类的成员函数。 规则:实部和虚部分别相加减。 操作数:两个操作数都是复数类的对象。108.2 运算符重载 8.2.2 运算符重载为成员函数例8-1(续)#include using namespace std;class Complex /复数类定义public:/外部接口Complex(do
5、uble r = 0.0, double i = 0.0) : real(r), imag(i) /构造函数Complex operator + (const Complex &c2) const;/运算符+重载成员函数Complex operator - (const Complex &c2) const;/运算符-重载成员函数void display() const;/输出复数private:/私有数据成员double real;/复数实部double imag;/复数虚部;118.2 运算符重载 8.2.2 运算符重载为成员函数例8-1(续)Complex Complex:operato
6、r + (const Complex &c2) const /重载运算符函数实现return Complex(real + c2.real, imag + c2.imag); /创建一个临时无名对象作为返回值Complex Complex:operator - (const Complex &c2) const /重载运算符函数实现return Complex(real - c2.real, imag - c2.imag); /创建一个临时无名对象作为返回值void Complex:display() const cout ( real , imag ) endl;128.2 运算符重载 8.
7、2.2 运算符重载为成员函数例8-1(续)int main() /主函数Complex c1(5, 4), c2(2, 10), c3;/定义复数类的对象cout c1 = ; c1.display();cout c2 = ; c2.display();c3 = c1 - c2;/使用重载运算符完成复数减法cout c3 = c1 - c2 = ; c3.display();c3 = c1 + c2;/使用重载运算符完成复数加法cout c3 = c1 + c2 = ; c3.display();return 0;138.2 运算符重载 8.2.2 运算符重载为成员函数例8-1(续)程序输出的
8、结果为:c1 = (5, 4)c2 = (2, 10)c3 = c1 - c2 = (3, -6)c3 = c1 + c2 = (7, 14)148.2 运算符重载 8.2.2 运算符重载为成员函数运算符成员函数的设计前置单目运算符 U如果要重载 U 为类成员函数,使之能够实现表达式 U oprd,其中 oprd 为A类对象,则 U 应被重载为 A 类的成员函数,无形参。经重载后,表达式 U oprd 相当于 oprd.operator U()158.2 运算符重载 8.2.2 运算符重载为成员函数运算符成员函数的设计(续)后置单目运算符 +和-如果要重载 +或-为类成员函数,使之能够实现表达
9、式 oprd+ 或 oprd- ,其中 oprd 为A类对象,则 +或- 应被重载为 A 类的成员函数,且具有一个 int 类型形参。经重载后,表达式 oprd+ 相当于 oprd.operator +(0)168.2 运算符重载 8.2.2 运算符重载为成员函数例8-2 运算符前置+和后置+重载为时钟类的成员函数。前置单目运算符,重载函数没有形参,对于后置单目运算符,重载函数需要有一个整型形参。操作数是时钟类的对象。实现时间增加1秒钟。178.2 运算符重载 8.2.2 运算符重载为成员函数#include using namespace std;class Clock/时钟类定义publi
10、c:/外部接口Clock(int hour = 0, int minute = 0, int second = 0);void showTime() const;Clock& operator + ();/前置单目运算符重载Clock operator + (int);/后置单目运算符重载private:/私有数据成员int hour, minute, second;Clock:Clock(int hour/* = 0 */, int minute/* = 0 */, int second/* = 0 */) if (0 = hour & hour 24 & 0 = minute & minu
11、te 60& 0 = second & second hour = hour;this-minute = minute;this-second = second; elsecout Time error! endl;188.2 运算符重载 8.2.2 运算符重载为成员函数例8-2(续)void Clock:showTime() const /显示时间函数cout hour : minute : second = 60) second -= 60;minute+;if (minute = 60) minute -= 60;hour = (hour + 1) % 24;return *this;C
12、lock Clock:operator + (int) /后置单目运算符重载/注意形参表中的整型参数Clock old = *this;+(*this);/调用前置“+”运算符return old;198.2 运算符重载 8.2.2 运算符重载为成员函数例8-2(续)int main() Clock myClock(23, 59, 59);cout First time output: ;myClock.showTime();cout Show myClock+: ;(myClock+).showTime();cout Show +myClock: ;(+myClock).showTime()
13、;return 0;208.2 运算符重载 8.2.2 运算符重载为成员函数例8-2(续)运行结果:First time output: 23:59:59Show myClock+: 23:59:59Show +myClock: 0:0:18.2.3运算符重载为非成员函数函数的形参代表依自左至右次序排列的各操作数。后置单目运算符 +和-的重载函数,形参列表中要增加一个int,但不必写形参名。如果在运算符的重载函数中需要操作某类对象的私有成员,可以将此函数声明为该类的友元。218.2 运算符重载8.2.3运算符重载为非成员函数(续)双目运算符 B重载后,表达式oprd1 B oprd2 等同于o
14、perator B(oprd1,oprd2 )前置单目运算符 B重载后,表达式 B oprd 等同于operator B(oprd )后置单目运算符 +和-重载后,表达式 oprd B 等同于operator B(oprd,0 )228.2 运算符重载例8-3以非成员函数形式重载Complex的加减法运算和“”运算符将+、-(双目)重载为非成员函数,并将其声明为复数类的友元,两个操作数都是复数类的常引用。将(双目)重载为非成员函数,并将其声明为复数类的友元,它的左操作数是std:ostream引用,右操作数为复数类的常引用,返回std:ostream引用,用以支持下面形式的输出:cout a
15、b;该输出调用的是:operator (operator (cout, a), b);238.2 运算符重载 8.2.3 运算符重载为非成员函数/8_3.cpp#include using namespace std;class Complex /复数类定义public:/外部接口Complex(double r = 0.0, double i = 0.0) : real(r), imag(i) /构造函数friend Complex operator + (const Complex &c1, const Complex &c2);/运算符+重载friend Complex operator
16、 - (const Complex &c1, const Complex &c2);/运算符-重载friend ostream & operator (ostream &out, const Complex &c); /运算符重载private:/私有数据成员double real;/复数实部double imag;/复数虚部;Complex operator + (const Complex &c1, const Complex &c2) /重载运算符函数实现return Complex(c1.real + c2.real, c1.imag + c2.imag); 248.2 运算符重载 8
17、.2.3 运算符重载为非成员函数例8-3(续)Complex operator - (const Complex &c1, const Complex &c2) /重载运算符函数实现return Complex(c1.real - c2.real, c1.imag - c2.imag); ostream & operator (ostream &out, const Complex &c) /重载运算符函数实现out ( c.real , c.imag );return out;int main() /主函数Complex c1(5, 4), c2(2, 10), c3;/定义复数类的对象co
18、ut c1 = c1 endl;cout c2 = c2 endl;c3 = c1 - c2;/使用重载运算符完成复数减法cout c3 = c1 - c2 = c3 endl;c3 = c1 + c2;/使用重载运算符完成复数加法cout c3 = c1 + c2 = c3 endl;return 0;258.2 运算符重载 8.2.3 运算符重载为非成员函数例8-3(续)8.3.1 一般虚函数成员C+中引入了虚函数的机制在派生类中可以对基类中的成员函数进行覆盖(重定义)。虚函数的声明Virtual 函数类型 函数名(形参表) 函数体268.3 虚函数例8-4虚函数成员#include us
19、ing namespace std;class Base1 /基类Base1定义public:virtual void display() const;/虚函数;void Base1:display() const cout Base1:display() endl;class Base2:public Base1 /公有派生类Base2定义public:void display() const;/覆盖基类的虚函数;void Base2:display() const cout Base2:display() endl;278.3 虚函数 8.3.1 一般虚函数成员 class Derived
20、: public Base2 /公有派生类public:void display() const; /覆盖基类的虚函数;void Derived:display() const cout Derived:display() display();/对象指针-成员名int main() /主函数Base1 base1;/定义Base1类对象Base2 base2;/定义Base2类对象Derived derived;/定义Derived类对象fun(&base1);/用Base1对象的指针调用fun函数fun(&base2);/用Base2对象的指针调用fun函数fun(&derived);/用D
21、erived对象的指针调用fun函数return 0;28例8-4(续)8.3 虚函数 8.3.1 一般虚函数成员 运行结果:Base1:display()Base2:display()Derived:display()8.3.2 虚析构函数为什么需要虚析构函数?可能通过基类指针删除派生类对象;如果你打算允许其他人通过基类指针调用对象的析构函数(通过delete这样做是正常的),就需要让基类的析构函数成为虚函数,否则执行delete的结果是不确定的。298.3 虚函数例8-5 虚析构函数举例#include using namespace std;class Base public:Base(
22、);Base:Base() cout Base destructor endl; class Derived: public Basepublic:Derived();Derived();308.3 虚函数 8.3.2 虚析构函数private:int *p;Derived:Derived() p = new int(0);Derived:Derived() cout Derived destructor endl;delete p;void fun(Base* b) delete b;int main() Base *b = new Derived();fun(b);return 0;例8-
23、5(续)运行时结果:Base destructor避免上述错误的有效方法就是将析构函数声明为虚函数,运行结果变为:Derived destructorBase destructor318.3 虚函数 8.3.2 虚析构函数8.4.1 纯虚函数纯虚函数是一个在基类中声明的虚函数,它在该基类中没有定义具体的操作内容,要求各派生类根据实际需要定义自己的版本,纯虚函数的声明格式为:virtual 函数类型 函数名(参数表) = 0;带有纯虚函数的类称为抽象类:class 类名 virtual 类型 函数名(参数表)=0; /纯虚函数 .328.4 抽象类8.4.2 抽象类作用抽象类为抽象和设计的目的而
24、声明,将有关的数据和行为组织在一个继承层次结构中,保证派生类具有要求的行为。对于暂时无法实现的函数,可以声明为纯虚函数,留给派生类去实现。注意抽象类只能作为基类来使用。不能声明抽象类的对象。构造函数不能是虚函数,析构函数可以是虚函数。338.4 抽象类例8-6 抽象类举例/8_6.cpp#include using namespace std;class Base1 /基类Base1定义public:virtual void display() const = 0;/纯虚函数;class Base2: public Base1 /公有派生类Base2定义public:void display(
25、) const;/覆盖基类的虚函数;void Base2:display() const cout Base2:display() endl;348.4 抽象类 8.4.2 抽象类class Derived: public Base2 /公有派生类Derived定义public:void display() const;/覆盖基类的虚函数;void Derived:display() const cout Derived:display() display();/对象指针-成员名int main() /主函数Base2 base2;/定义Base2类对象Derived derived;/定义D
26、erived类对象fun(&base2);/用Base2对象的指针调用fun函数fun(&derived);/用Derived对象的指针调用fun函数return 0;358.4 抽象类 8.4.2 抽象类例8-6(续)运行结果:Base2:display()Derived:display()8.5 程序实例变步长梯形积分算法求解函数的定积分算法基本原理我们只考虑最简单的情况,设被积函数是一个一元函数,定积分表达式为:积分表示的意义是一元函数f(x)在区间a到b之间与x轴所夹的面积36y xabxkxk-1hIkf(x)8.5.1 算法基本原理(续)在每个小区间上都用小的梯形面积来近似原函数的
27、积分,当小区间足够小时,我们就可以得到原来积分的近似值。每个小区间的面积值公式:实际计算中步长h逐次减半,反复利用上述求积公式进行计算,直到所求得的积分结果满足要求的精度为止。并得到递推公式:378.5 程序实例变步长梯形积分算法求解函数的定积分8.5.2程序设计分析388.5 程序实例变步长梯形积分算法求解函数的定积分MyFunction + operator()(x : double) : doubleIntegration + operator ()(a : double, b : double, eps : double) : doubleFunction + operator ()(
28、x : double) : doubleTrapz+ Trapz(pf : const F&) + operator ()(a : double, b : double, eps : double) : double-f8.5.3 源程序及说明 例8-7 变步长梯形积分法求解函数的定积分我们求一个测试函数在某给定区间的积分值,对整个程序进行了测试,误差为eps为10-7。测试函数:整个程序分为三个独立的文档,Trapzint.h文件包括类的定义,Trapzint.cpp文件包括类的成员函数实现。文件intmain.cpp是程序的主函数,主函数中定义了函数类Fun和梯形积分类Trapz的对象39
29、8.5 程序实例变步长梯形积分算法求解函数的定积分/Trapzint.h 文件一,类定义class Function /抽象类Function的定义public:virtual double operator () (double x) const = 0;/纯虚函数重载运算符()virtual Function() ;class MyFunction: public Function /公有派生类MyFunction定义public:virtual double operator()(double x) const;/覆盖虚函数;class Integration /抽象类Integrati
30、on定义public:virtual double operator () (double a, double b, double eps) const = 0;virtual Integration() ;40例8-7(续)8.5 程序实例变步长梯形积分算法求解函数的定积分class Trapz: public Integration/公有派生类Trapz定义public:Trapz(const Function &f) : f(f) /构造函数virtual double operator ()(double a, double b,double eps) const;private:co
31、nst Function &f;/私有成员,Function类对象的指针;/Trapzint.cpp 文件二,类实现#include Trapzint.h/包含类的定义头文件#include double MyFunction:operator () (double x) const /被积函数return log(1.0 + x) / (1.0 + x * x);double Trapz:operator () (double a,double b,double eps) const /积分运算过程,重载为运算符()bool done = false;/是Trapz类的虚函数成员int n
32、= 1;double h = b - a;double tn = h * (f(a) + f(b) / 2;/计算n = 1时的积分值double t2n;41例8-7(续)8.5 程序实例变步长梯形积分算法求解函数的定积分do double sum = 0;for(int k = 0; k n; k+) double x = a + (k + 0.5) * h;sum += f(x);t2n = (tn + h * sum) / 2.0;/变步长梯形法计算if (fabs(t2n - tn) eps)done = true;/判断积分误差else /进行下一步计算tn = t2n;n *=
33、2;h /= 2; while (!done);return t2n;42例8-7(续)8.5 程序实例变步长梯形积分算法求解函数的定积分/8_7.cpp 文件三,主函数#include Trapzint.h/类定义头文件#include #include using namespace std;int main() /主函数MyFunction f;/定义MyFunction类的对象Trapz trapz(f);/定义Trapz类的对象/计算并输出积分结果cout TRAPZ Int: setprecision(7) trapz(0, 2, 1e-7) endl;return 0;43例8-
34、7(续)8.5 程序实例变步长梯形积分算法求解函数的定积分运行结果:TRAPZ Int: 0.55489528.6 综合实例对个人银行账户管理程序的改进本例在第七章例7-10的基础上,对Account类做了如下改进:(1) 将show函数声明为虚函数,因此通过指向CreditAccount类实例的Accout类型的指针来调用show函数时,被实际调用的将是为CreditAccount类定义的show函数,这样,如果创建一个Account指针类型的数组,使各个元素分别指向各个账户对象,就可以通过一个循环来调用它们的show函数;(2) 在Account类中添加deposit、withdraw、s
35、ettle这3个函数的声明,且将它们都声明为纯虚函数,这使得通过基类的指针可以调用派生类的相应函数,而且无需给出它们在基类中的实现。经过这一改动之后,Account类就变成了抽象类。4445-acc : Accumulator-rate : doubleSavingsAccount+SavingsAccount(date : Date, id : int, rate : double) +getRate() : double+deposit(date : Date, amount : double, desc : string)+withdraw(date : Date, amount : d
36、ouble, desc : string)+settle(date : Date)11-acc : Accumulator-credit : double-rate : double-fee : doubleCreditAccount -getDebt() : double+CreditAccount(date : Date, id : int, credit : double, rate : double, fee : double) +getCredit() : double +getRate() : double +getFee() : double +getAvailableCredi
37、t() : double+deposit(date : Date, amount : double, desc : string)+withdraw(date : Date, amount : double, desc : string)+settle(date : Date) +show()-year : int-month : int-day : int-totalDays : int+Date(year : int, month : int, day : int) +getYear() : int +getMonth() : int +getDay() : int + getMaxDay
38、() : int + isLeapYear() : bool + show() + operator - (date : Date) : intDate-lastDate : Date-value : double-sum : double+Accumulator(date : Date, value : double) +getSum(date : Date) : double+change(date : Date, value : double)+reset(date : Date, value : double)Accumulator#Account(date : Date, id :
39、int)#record(date: Date, amount : double, desc : string) # error (msg : string) +getId() : int +getBalance() : double + deposit(date : Date, amount : double, desc : string) + withdraw(date : Date, amount : double, desc : string) + settle(date : Date) + show() +getTotal() : doubleAccount-id : string-b
40、alance : double-total : double1/date.h#ifndef _DATE_H_#define _DATE_H_class Date /日期类private:int year;/年int month;/月int day;/日int totalDays;/该日期是从公元元年1月1日开始的第几天public:Date(int year, int month, int day);/用年、月、日构造日期int getYear() const return year; int getMonth() const return month; int getDay() const
41、return day; int getMaxDay() const;/获得当月有多少天bool isLeapYear() const /判断当年是否为闰年return year % 4 = 0 & year % 100 != 0 | year % 400 = 0;void show() const;/输出当前日期int operator - (const Date& date) const /计算两个日期之间差多少天return totalDays - date.totalDays;#endif /_DATE_H_468.6 综合实例对个人银行账户管理程序的改进例8-8(续)/accumula
42、tor.h#ifndef _ACCUMULATOR_H_#define _ACCUMULATOR_H_#include date.hclass Accumulator /将某个数值按日累加private:Date lastDate;/上次变更数值的时期double value;/数值的当前值double sum;/数值按日累加之和public:double getSum(const Date &date) const return sum + value * (date - lastDate);/该类其它成员函数的原型和实现与例7-10完全相同,不再重复给出;#endif /_ACCUMULA
43、TOR_H_478.6 综合实例对个人银行账户管理程序的改进例8-8(续)/account.h#ifndef _ACCOUNT_H_#define _ACCOUNT_H_#include date.h#include accumulator.h#include class Account /账户类private:std:string id;/帐号double balance;/余额static double total; /所有账户的总金额protected:/供派生类调用的构造函数,id为账户Account(const Date &date, const std:string &id);/记
44、录一笔帐,date为日期,amount为金额,desc为说明void record(const Date &date, double amount, const std:string &desc);/报告错误信息void error(const std:string &msg) const;488.6 综合实例对个人银行账户管理程序的改进例8-8(续)public:const std:string &getId() const return id; double getBalance() const return balance; static double getTotal() return
45、 total; /存入现金,date为日期,amount为金额,desc为款项说明virtual void deposit(const Date &date, double amount, const std:string &desc) = 0;/取出现金,date为日期,amount为金额,desc为款项说明virtual void withdraw(const Date &date, double amount, const std:string &desc) = 0;/结算(计算利息、年费等),每月结算一次,date为结算日期virtual void settle(const Date
46、&date) = 0;/显示账户信息virtual void show() const;/SavingsAccount和CreditAccount两个类的定义与例7-10完全相同,不再重复给出 #endif /_ACCOUNT_H_498.6 综合实例对个人银行账户管理程序的改进例8-8(续)/account.cpp/仅下面的函数定义与例7-10不同,其它皆相同,不再重复给出void SavingsAccount:settle(const Date &date) if (date.getMonth() = 1) /每年的一月计算一次利息double interest = acc.getSum(
47、date) * rate/ (date - Date(date.getYear() - 1, 1, 1);if (interest != 0)record(date, interest, interest);acc.reset(date, getBalance();/8_8.cpp#include account.h#include using namespace std;int main() Date date(2008, 11, 1);/起始日期/建立几个账户SavingsAccount sa1(date, S3755217, 0.015);SavingsAccount sa2(date,
48、 02342342, 0.015);508.6 综合实例对个人银行账户管理程序的改进例8-8(续)CreditAccount ca(date, C5392394, 10000, 0.0005, 50);Account *accounts = &sa1, &sa2, &ca ;const int n = sizeof(accounts) / sizeof(Account*);/账户总数cout (d)deposit (w)withdraw (s)show (c)change day (n)next month (e)exit endl;char cmd;do /显示日期和总金额date.show
49、();cout tTotal: Account:getTotal() ;int index, day;double amount;string desc;cin cmd;switch (cmd) case d:/存入现金cin index amount;getline(cin, desc);accountsindex-deposit(date, amount, desc);break;518.6 综合实例对个人银行账户管理程序的改进例8-8(续) case w:/取出现金cin index amount;getline(cin, desc);accountsindex-withdraw(dat
50、e, amount, desc);break; case s:/查询各账户信息for (int i = 0; i n; i+) cout i show();cout day;if (day date.getDay()cout date.getMaxDay()cout Invalid day;elsedate = Date(date.getYear(), date.getMonth(), day);break;528.6 综合实例对个人银行账户管理程序的改进例8-8(续) case n:/进入下个月if (date.getMonth() = 12)date = Date(date.getYear
51、() + 1, 1, 1);elsedate = Date(date.getYear(), date.getMonth() + 1, 1);for (int i = 0; i settle(date);break; while (cmd != e);return 0;538.6 综合实例对个人银行账户管理程序的改进例8-8(续)2008-11-1 #S3755217 created2008-11-1 #02342342 created2008-11-1 #C5392394 created(d)deposit (w)withdraw (s)show (c)change day (n)next m
52、onth (e)exit2008-11-1 Total: 0 command c 52008-11-5 Total: 0 command d 0 5000 salary2008-11-5 #S3755217 5000 5000 salary2008-11-5 Total: 5000 command c 152008-11-15 Total: 5000 command w 2 2000 buy a cell2008-11-15 #C5392394 -2000 -2000 buy a cell2008-11-15 Total: 3000 command c 252008-11-25 Total:
53、3000 command d 1 10000 sell stock 03232008-11-25 #02342342 10000 10000 sell stock 03232008-11-25 Total: 13000 command n2008-12-1 #C5392394 -16 -2016 interest2008-12-1 Total: 12984 command d 2 2016 repay the credit2008-12-1 #C5392394 2016 0 repay the credit2008-12-1 Total: 15000 command c 52008-12-5
54、Total: 15000 command d 0 5500 salary2008-12-5 #S3755217 5500 10500 salary2008-12-5 Total: 20500 command n2009-1-1 #S3755217 17.77 10517.8 interest2009-1-1 #02342342 15.16 10015.2 interest2009-1-1 #C5392394 -50 -50 annual fee2009-1-1 Total: 20482.9 command s0 S3755217 Balance: 10517.81 02342342 Balan
55、ce: 10015.22 C5392394 Balance: -50 Available credit:99502009-1-1 Total: 20482.9 command e548.6 综合实例对个人银行账户管理程序的改进例8-8(续)运行结果8.7 深度探索558.7.1 多态类型与非多态类型多态类型与非多态类型有虚函数的类类型称为多态类型其它类型皆为非多态类型二者的差异语言层面的差异多态类型支持运行时类型识别多态类型对象占用额外的空间设计原则上的差异568.7 深度探索设计原则多态类型多态类型的析构函数一般应为虚函数非多态类型非多态类型不宜作为公共基类由于没有利用动态多态性,一般可以用
56、组合,而无需用共有继承;如果继承,则由于析构函数不是虚函数,删除对象时所执行操作与指针类型有关,易引起混乱。把不需被继承的类型设定为非多态类型由于成员函数都是静态绑定,调用速度较快;对象占用空间较小。578.7 深度探索 8.7.1 多态类型与非多态类型8.7.2 运行时类型识别运行时类型识别允许在运行时通过基类指针(或引用)辨别对象所属的具体派生类;只对多态类型适用;比虚函数动态绑定的开销更大,因此应仅对虚函数无法解决的问题使用。运行时类型识别的方式用dynamic_cast做类型转换的尝试;用typeid直接获取类型信息。588.7 深度探索使用dynamic_cast语法形式dynami
57、c_cast(表达式)功能将基类指针转换为派生类指针,将基类引用转换为派生类引用;转换是有条件的如果指针(或引用)所指对象的实际类型与转换的目的类型兼容,则转换成功进行;否则如执行的是指针类型的转换,则得到空指针;如执行的是引用类型的转换,则抛出异常。598.7 深度探索 8.7.2 运行时类型识别例8-9 dynamic_cast用法示例#include using namespace std;class Base public:virtual void fun1() cout Base:fun1() endl; virtual Base() ;class Derived1: public Base public:virtual void fun1() cout Derived1:fun1() endl; virtual void fun2() cout Derived1:fun2() endl; ;class Derived2: public Derived1 public:virtual void fun1() cout Derived2:
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 婚车租赁服务合同终止
- 医用外科口罩购销合同
- 设计勘察分包合同
- 木工分包合同的支付方式
- 广告发布服务合同
- 钢筋交易合同
- 联营共营合同范本
- 暴行之后的家暴反省
- 2024企业工资专项集体合同范本
- 2024培训合同样书
- 北师大版小学数学六年级上册《分数混合运算(二)》示范课教学设 计
- 2024秋季新人教七上全册重点短语句型小纸条【空白版】
- 职业道德题库试题及答案
- 概率论与数理统计试卷及答案4套
- 新《劳动合同法》知识学习考试题库200题(含答案)
- 2024新教科版一年级科学上册第一单元《周围的植物》全部教案
- 2024云南丽江玉龙国资本投资运营限责任公司招聘笔试高频考题难、易错点模拟试题(共500题)附带答案详解
- 影视制作项目流程与执行预案
- 三级安全培训考试题附参考答案(完整版)
- 《信息安全数学基础.》全套教学课件
- 前程无忧的题库
评论
0/150
提交评论