《SSD1 3课件》.ppt

  1. 1、本文档共59页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 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

文档评论(0)

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

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

1亿VIP精品文档

相关文档