- 1、本文档共59页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
SSD1: Introduction to Information Systems Unit 3: Inheritance 3.1 Introduction to Inheritance Introduction Terminology Inheritance in Action Advantages of Programming with Inheritance When Not to Use Inheritance Inheritance in Java Introduction Bank accounts can be further subdivided into groups such as savings accounts, and checking accounts. Defining much of the same code for both checking accounts and savings accounts. Using inheritance, an object acquires all the methods and attributes of the class from which it inherits. Terminology 被继承的类称为父类(parent class),或称为超类(super class)、基类(base class)、超类型(supertype) 继承父类而产生的新类称为子类(subclass)、导出类(derived class)或子类型(subtype) Inheritance in Action It may seem very abstract at this point that a class can use the attributes and methods of another class without declaring them. CheckingAccount SavingsAccount Advantages of Programming with Inheritance First, inheritance allows programmers to design systems in an intuitive, in a top-down fashion. 编程者可以使用自上而下的模式设计系统,系统的设计清晰、直观 Second, it provides a framework for code re-use. 如:Catfish、Crocodile和Algae类中都需要使用一个die方法描述生物死去的行为,这三个生物死去的行为的实现都是一样的,使用了继承,就只需使用一次die()方法,而无需实现三次 我们能在LivingBeing类中定义AlgaeColony, Crocodile, and Catfish 共同的属性和方法. LivingBeing类能进一步在animals类和非animals类之间划分。 When Not to Use Inheritance Age, energy level, are alive (or not) should be generalized into the LivingBeing class Catfish、Crocodile和AlgaeColony都是LivingBeing的子类,这三类生物都有年龄(age)、能量(energy)以及是否活着(alive)属性,这些共同的属性可以放在LivingBeing It does not make sense to include the ability to move in the LivingBeing class since AlgaeColony cannot move. 但是Catfish和Crocodile可以移动,而水草不可以移动,因此移动行为的描述不能放在LivingBeing中实现 Inheritance in Java In Java, all classes are subclasses of Object and inherit all of Objects attributes and methods. We can design objects starting with their least specific forms, where all general behavior is shared in one place. We can then proceed to derive specific versions of these general objects. 3.2 U
您可能关注的文档
- 《SPA的简介》.docx
- 《SPA行业未来发展分析》.doc
- 《SPA锥套皮带轮参数样本》.pdf
- 《spc & 6 Sigma training》.ppt
- 《SPC & 6Sigma 理论与应用》.pdf
- 《SPC_training_for_supplier_20160617-for_printing》.ppt
- 《SPC与制程管制 上》.doc
- 《SPC与制程管制 下》.doc
- 《spc培训》.doc
- 《SPC培训教材 BenQ》.ppt
- 第十一章 电流和电路专题特训二 实物图与电路图的互画 教学设计 2024-2025学年鲁科版物理九年级上册.docx
- 人教版七年级上册信息技术6.3加工音频素材 教学设计.docx
- 5.1自然地理环境的整体性 说课教案 (1).docx
- 4.1 夯实法治基础 教学设计-2023-2024学年统编版九年级道德与法治上册.docx
- 3.1 光的色彩 颜色 电子教案 2023-2024学年苏科版为了八年级上学期.docx
- 小学体育与健康 四年级下册健康教育 教案.docx
- 2024-2025学年初中数学九年级下册北京课改版(2024)教学设计合集.docx
- 2024-2025学年初中科学七年级下册浙教版(2024)教学设计合集.docx
- 2024-2025学年小学信息技术(信息科技)六年级下册浙摄影版(2013)教学设计合集.docx
- 2024-2025学年小学美术二年级下册人美版(常锐伦、欧京海)教学设计合集.docx
文档评论(0)