C++的多态性解说.ppt

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* 说明 (3)通常来说,重载后的运算符的功能与原有功能应类似,这样符合人们的使用习惯,不易引起混乱。例如,不要通过重载“+”运算符来实现乘法的功能。 (4)运算符重载不能改变其原有操作数的个数。 (5)运算符重载不能改变运算符原有的优先级和结合特性。 (6)运算符重载函数的参数中至少有一个应是类(结构体)对象或类(结构体)对象的引用,而不能都是基本数据类型。 * 4.2 虚函数 前面介绍过的函数重载和运算符重载,都属于编译时的多态性(静态多态性),即系统在编译时确定调用哪一个函数。 而通过虚函数,可以实现另一种多态性—运行时的多态性。运行时的多态性是指程序在运行时决定调用哪一个函数。 * 4.2.1 虚函数的引入 【例4-6】 通过基类指针调用类的同名函数。 本例定义了CPerson类、CStudent类和CGraStudent类,在这三个类中定义了同名函数PrintInfo,用于进行相关信息的输出。其中CPerson类是CStudent类的基类,CStudent类是CGraStudent类的基类。 * #include iostream using namespace std; class CDate { int m_nYear; int m_nMonth; int m_nDay; public: CDate(int nYear, int nMonth, int nDay); int GetYear(); int GetMonth(); int GetDay(); }; 日期类 * …… class CPerson { protected: char* m_strName; char* m_strID; char m_cSex; CDate m_Birthday; public: CPerson(char* strName = , char* strID = , char cSex = 0, int nYear =0, int nMonth = 0, int nDay = 0); ~CPerson(); …… void SetBirthday(CDate Birthday); CDate GetBirthday() const; void PrintInfo() const; }; 人员类 * …… void CPerson::PrintInfo() const { cout该人员的信息为:endl; cout姓名:m_strName 编号:m_strID ; if(m_cSex == 0) cout性别:男; else cout性别:女; cout 出生日期:GetBirthday().GetYear(), GetBirthday().GetMonth(),GetBirthday().GetDay()endl; } * class CStudent: public CPerson { static unsigned long m_nCount; protected: char *m_strMajor; public: CStudent(char* strName = , char* strID = , char cSex = 0, int nYear = 0, int nMonth = 0, int nDay = 0, char* strMajor = ); ~CStudent(); void SetMajor(char* strMajor); void GetMajor(char* strMajor) const; void Copy(CStudent Student); static unsigned long GetCount() ; void PrintInfo() const; }; 学生类 * …… void CStudent::PrintInfo() const { cout该学生的信息为:endl; cout姓名:m_strName 编号:m_strID ; if(m_cSex == 0) cout性别:男; else cout性别:女; cout 出生日期:GetBirthday().GetYear(), GetBirthday().GetMonth(),GetBirthday().GetDay()endl; cout专业:m_strMajorendl; } * class CGraStudent: public CStudent { protected: cha

文档评论(0)

a336661148 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档