类和对象范本学习培训模板课件.ppt
- 【下载声明】
1. 本站全部试题类文档,若标题没写含答案,则无答案;标题注明含答案的文档,主观题也可能无答案。请谨慎下单,一旦售出,不予退换。
2. 本站全部PPT文档均不含视频和音频,PPT中出现的音频或视频标识(或文字)仅表示流程,实际无音频或视频文件。请谨慎下单,一旦售出,不予退换。
3. 本页资料《类和对象范本学习培训模板课件.ppt》由用户(林田)主动上传,其收益全归该用户。163文库仅提供信息存储空间,仅对该用户上传内容的表现方式做保护处理,对上传内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!
4. 请根据预览情况,自愿下载本文。本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
5. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007及以上版本和PDF阅读器,压缩文件请下载最新的WinRAR软件解压。
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 对象 范本 学习 培训 模板 课件
- 资源描述:
-
1、类和对象Class and Object关于对象式语言2022-8-15Institute of Computer Software,Nanjing University2本课程并不系统讲授Eiffel语言但应学会“欣赏”Eiffel 语言(比较“纯”)它首先是一个对象式程序设计语言但强调从分析到设计到实现的平滑过渡摘要2022-8-15Institute of Computer SoftwareNanjing University3三个世界:面向对象的建模面向对象原则类:对象程序静态的结构对象:运行时刻的结构对象创建:从类到对象对象引用:对象串起来摘要三个世界三个世界:面向对象的建模面向对象
2、的建模面向对象原则类:对象程序静态的结构对象:运行时刻的结构对象创建:从类到对象对象引用:对象串起来2022-8-15Institute of Computer Software,Nanjing University4三个世界2022-8-15Institute of Computer Software,Nanjing University5客观世界 DVD播放机What is reality?复杂性 认识的主观性 问题世界抽象!A model of a subset of the reality DVD播放机计算机(软件)世界A model of a model of a subset of
3、 the reality2022-8-1562022-8-15Institute of Computer SoftwareNanjing University现实世界现实世界问题世界问题世界软件世界软件世界Reality抽象抽象摘要2022-8-15Institute of Computer SoftwareNanjing University7三个世界:面向对象的建模面向对象原则面向对象原则类:对象程序静态的结构对象:运行时刻的结构对象创建:从类到对象对象引用:对象串起来面向对象原则2022-8-15Institute of Computer Software,Nanjing Univers
4、ity8Object OrientationEncapsulationAbstractionPolymorphismInheritance面向对象原则2022-8-15Institute of Computer Software,Nanjing University9Object OrientationEncapsulationAbstractionPolymorphismInheritance回顾:抽象数据类型2022-8-15Institute of Computer Software,Nanjing University10抽象数据类型(ADT):用数学方法定义对象集合和运算集合,仅通过
5、运算的性质刻画数据对象,而独立于计算机中可能的表示方法ADT规约方法代数规范语法部分,公理部分ADT实现E1,E2,E3面向对象原则2022-8-15Institute of Computer Software,Nanjing University11Object OrientationEncapsulationAbstractionPolymorphismInheritance封装2022-8-15Institute of Computer Software,Nanjing University12封装是把过程和数据包围起来,对数据的访问只能通过已定义的界面。DVD播放机2022-8-15I
6、nstitute of Computer SoftwareNanjing University13封装lProfessor Clark needs to be able to teach four classes in the next semester.SubmitFinalGrades()AcceptCourseOffering()TakeSabbatical()Professor ClarkSetMaxLoad()Name:J ClarkEmployee ID:567138HireDate:07/25/1991Status:TenuredDiscipline:FinanceMaxLoad
7、:4SetMaxLoad(4)2022-8-15Institute of Computer SoftwareNanjing University14封装信息/实现隐藏Deposit()Withdraw()Transfer()BalanceinsterestYTDOwnerAccount_number Deposit()Withdraw()Transfer()2022-8-15Institute of Computer SoftwareNanjing University15封装封装使得对象在抽象所界定的范围内保持相对的独立,从而保证对象设计和对象实施方法的可靠分离。设计者和使用者分离!封装可以
8、防止由于程序模块之间的互相依赖性而导致程序“不稳定”不会因某个部分的修改而导致整个系统许多部分都发生改动。封装是相对的!不能也没有必要阻止编程人员去查看实施细节。2022-8-15Institute of Computer SoftwareNanjing University16封装 vs.继承矛盾吗?No!封装性主要指的是对象的封装性,引入继承机制后,对象仍然是封装地很好的实体,其它对象与它通信只能发送消息。相似性:共享代码!继承:静态共享代码封装:动态共享代码2022-8-15Institute of Computer SoftwareNanjing University17模块化传统的模
9、块划分方法:要求组成的子程序(模块)有实际意义和明确的某个功能功能分解和结构分解OO的模块划分目标:生成一组有助于降低系统开发费用的模块,通过模块划分所得到的模块应该能够保证可以独立的生成和修改,每个模块的结构应该足够简单2022-8-15Institute of Computer SoftwareNanjing University18模块化与抽象和封装密切相关模块的划分是以抽象出来的对象的性质和功能为依据的模块是封装得以实现的技术保障Booch:“模块化是反映一个被分解成一组相关联的松散结合模块组成系统的一个特性。”模块化以模块为基础2022-8-15Institute of Comput
10、er SoftwareNanjing University19模块与类型的统一模块是软件分解的单元,是语法概念类型是某些动态对象的静态描述,是语义概念传统语言 模块与类型分离对象语言 模块与类型统一类型:类是抽象数据类型的实现模块:类是对象式程序的基本组成单元基于类的面向对象的语言机制的强有力之处在于“类”统一了类型和模块面向对象原则2022-8-15Institute of Computer Software,Nanjing University20Object OrientationEncapsulationAbstractionPolymorphismInheritance2022-8-
11、15Institute of Computer SoftwareNanjing University21层次性封装性帮助隐藏细节;模块化使结构更加有序,但仍然不够!层次性是对抽象的排序和定位类结构关系(“is a”)对象结构关系(“part of”)实现方式继承:子类,父类单继承,多继承聚合:拥有关系/组合关系2022-8-15Institute of Computer SoftwareNanjing University22继承单继承CheckingSavingsSuperclass(parent)SubclassesInheritance RelationshipAncestorDesce
12、ndentsAccount-balance-name-number+withdraw()+createStatement()2022-8-15Institute of Computer SoftwareNanjing University23继承多继承Use multiple inheritance only when needed and always with caution!FlyingThingAnimalHorseWolfBirdHelicopterAirplaneMultiple Inheritance2022-8-15Institute of Computer SoftwareN
13、anjing University24继承继承 作为模块扩展机制,体现开闭原则开闭原则,较好地支持软件的复用。继承 作为类型特化机制,体现分类方法,更合理地支持子类型实现。继承也是多态和动态绑定机制的基础。2022-8-15Institute of Computer SoftwareNanjing University25子类对父类的扩展与特化继承表达的是一种分类演绎的认识方法“To program is to understand.”特化:包含范围变小,行为特殊化扩展:增加新的操作重定义:改变行为2022-8-15Institute of Computer SoftwareNanjing U
14、niversity26The Open-Closed Principle(OCP)动机:软件是变化的!开闭原则:“Closed for Modification;Open for Extension”对修改关闭,对扩展开放!Why OCP?-重用How OCP?-继承The Open-Closed PrincipleModules should be open and closed.Definitions:Open module:May be extended.Closed module:Usable by clients.May be approved,baselined and(if pr
15、ogram unit)compiled.The rationales are complementary:For closing a module(managers perspective):Clients need it now.For keeping modules open(developers perspective):One frequently overlooks aspects of the problem.2022-8-15Institute of Computer Software,Nanjing University27The Open-Closed Principle(1
16、)Institute of Computer SoftwareNanjing UniversityACEDB2022-8-15The Open-Closed Principle(2)Institute of Computer SoftwareNanjing UniversityACEDBFAGH I2022-8-15The Open-Closed Principle(3)Institute of Computer SoftwareNanjing UniversityACEDBFAGH I2022-8-152022-8-15Institute of Computer SoftwareNanjin
17、g University31Example面向对象原则2022-8-15Institute of Computer Software,Nanjing University32Object OrientationEncapsulationAbstractionPolymorphismInheritance2022-8-15Institute of Computer SoftwareNanjing University33多态多态性使指相同的操作或函数、过程可作用于多种类型的对象上并获得不同的结果。不同的对象,收到同一消息可以产生不同的结果,这种现象称为多态性。多态性允许每个对象以适合自身的方式去
18、响应共同的消息多态性增强了软件的灵活性和重用性。2022-8-15Institute of Computer SoftwareNanjing University34多态ShapeCircleTriangleSquaredraw()draw()draw()draw()public class Shapes public static Shape randShape()switch(int)(Math.random()*3)default:case 0:return new Circle();case 1:return new Square();case 2:return new Triangl
19、e();public static void main(String args)Shape s=new Shape3;/向数组里添加类型 for(int i=0;i s.length;i+)si=randShape();/用多态的方法调用 for(int i=0;i=0end2022-8-15Institute of Computer Software,Nanjing University40类的构成类名继承关系成员术语分类2022-8-15Institute of Computer Software,Nanjing University41Abstract data type POINTx:
20、POINT REALy:POINT REAL:POINT REAL:POINT REALClass POINT:Choose a representation(polar,cartesian)In polar representation,and are attributes,x and y are routines.2022-8-15Institute of Computer Software,Nanjing University42yxA simple classclass POINT featurex,y:REAL-Point cartesian coordinatesmove(a,b:
21、REAL)is-Move by a horizontally and by b vertically.dox:=x+ay:=y+bendscale(factor:REAL)is-Scale by factor.dox:=factor*xy:=factor*yend2022-8-15Institute of Computer Software,Nanjing University43Class POINT(contd)distance(p:POINT):REAL is-Distance to pdoResult:=sqrt(x p.x)2+(y p.y)2)endro:REAL is-Dista
22、nce to origin(0,0)doResult:=sqrt(x2+y2)endtheta:REAL is-Angle to horizontal axisdoendend2022-8-15Institute of Computer Software,Nanjing University44术语A class is an implementation of an abstract data type.Instances of the class may be created at run-time;they are objects.类的实例在运行时刻产生,他们是对象。Every objec
23、t is an instance of a class.每个对象都是一个类的实例。Note:In a pure O-O language such as Eiffel and Smalltalk this is true even of basic objects such as integers etc.Not true in C+or Java where such values have special status.2022-8-15Institute of Computer Software,Nanjing University45术语A class is characterized
24、 by features.Features comprise attributes(representing data fields of instances of the class)and routines(operations on instances).Routines are subdivided into procedures(effect on the instance,no result)and functions(result,normally no effect).Every operation(routine or attribute call)is relative t
25、o a distinguished object,the current instance of the class.2022-8-15Institute of Computer Software,Nanjing University46Feature categories by role2022-8-15Institute of Computer Software,Nanjing University47CommandQueryFeatureProcedureAttributeFunctionNo resultReturns resultComputationMemoryFeature ca
展开阅读全文