6.4纯虚函数与抽象类抽象类什么叫抽象类-网络教育学院.ppt

6.4纯虚函数与抽象类抽象类什么叫抽象类-网络教育学院.ppt

  1. 1、本文档共34页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
6.4纯虚函数与抽象类抽象类什么叫抽象类-网络教育学院.ppt

Object-Oriented Programming in C++ 第六章 多态性与虚函数;第一章 C++的初步知识 第二章 类和对象 第三章 再论类和对象 第四章 运算符重载 第五章 继承与派生 第六章 多态性与虚函数 第七章 输入输出流 第八章 C++工具;6.1 多态性的概念 6.2 一个典型的例子 6.3 虚函数 6.4 纯虚函数与抽象类;6.1 多态性的概念;6.1 多态性的概念;6.2 一个典型的例子;① 先声明基类point;② 再声明派生类circle类;③ 最后声明cylinder类;最后写出主函数;6.2 一个典型的例子;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.3 虚函数;6.4 纯虚函数与抽象类;6.4 纯虚函数与抽象类;6.4 纯虚函数与抽象类;6.4 纯虚函数与抽象类;6.4 纯虚函数与抽象类;#include iostream.h class shape {public: virtual float area( ) const { return 0.0; } // 虚函数 virtual float volume( ) const { return 0.0; } // 虚函数 virtual void shapeName( ) const =0; // 纯虚函数 }; // 抽象类不能也不必定义对象 class point : public shape {public: point (float =0, float =0); void setPoint (float, float); float getX( ) { return x; } float getY( ) { return y; } virtual void shapeName ( ) const { cout“point:”; } // 对虚函数再定义 friend ostream operator ( ostream , const point ); protected: float x,y; };;class circle : public point {public: circle (float x=0, float y=0, float r=0); float getRadius( ) const; virtual float area ( ) const; // 因为基类此函数定义为虚函数,所以在这里,不管有没有virtual, 只要函数名、参数表相同,都是虚函数 virtual void shapeName ( ) const { cout“circle:”; } // 对虚函数再定义 friend ostream operator( ostream , const circle ); protected: float radius; }; // 定义circle类成员函数 circle :: circle (float x, float y, float r) : point (x,y),radius ( r ) { } ;class cylinder : public circle {public: cylinder ( float x=0, float y=0, float r=0, float h=0 ); void setHeight (float); virtual float area ( ) const; virtual float volume ( ) const; virtual void shapeName ( ) const { cout“cylinder:”; } // 对虚函数再定义 friend ostream operator( ostream , const cylinder ); protected: float height; }; // 定义cylinder类成员函数 cylinder :: cylinder ( float a,

文档评论(0)

170****0532 + 关注
实名认证
内容提供者

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

版权声明书
用户编号:8015033021000003

1亿VIP精品文档

相关文档