2005 Pearson Education, Inc. All rights reserved. 1 9 9 Object-Oriented Programming: Inheritance.

Презентация:



Advertisements
Похожие презентации
2005 Pearson Education, Inc. All rights reserved. 1 Object-Oriented Programming: Polymorphism.
Advertisements

2005 Pearson Education, Inc. All rights reserved. 1 Object-Oriented Programming: Interface.
1 © Luxoft Training 2012 Inner and anonymous classes.
Inner Classes. 2 Simple Uses of Inner Classes Inner classes are classes defined within other classes The class that includes the inner class is called.
Unit II Constructor Cont… Destructor Default constructor.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v Route Selection Using Policy Controls Applying Route-Maps as BGP Filters.
1/30 Chapter 8: Dynamic Binding And Abstract classes.
Operator Overloading Customised behaviour of operators Chapter: 08 Lecture: 26 & 27 Date:
© Luxoft Training 2013 Annotations. © Luxoft Training 2013 Java reflection / RTTI // given the name of a class, get a "Class" object that // has all info.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v Optimizing BGP Scalability Implementing BGP Peer Groups.
A class is just a collection of variables--often of different types--combined with a set of related functions. The variables in the class are referred.
1/27 Chapter 9: Template Functions And Template Classes.
© Luxoft Training 2013 Using Reflection API in Java.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v Customer-to-Provider Connectivity with BGP Connecting a Multihomed Customer to Multiple Service.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v Scaling Service Provider Networks Designing Networks with Route Reflectors.
Object-Oriented Programming Dr. Ramzi Saifan Slides adapted from Prof. Steven Roehrig.
© 2006 Cisco Systems, Inc. All rights reserved. MPLS v Complex MPLS VPNs Introducing Central Services VPNs.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v Route Selection Using Policy Controls Using Multihomed BGP Networks.
© Luxoft Training 2013 Java Collections API. © Luxoft Training 2013 Collections hierarchy.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v Customer-to-Provider Connectivity with BGP Understanding Customer-to-Provider Connectivity.
Транксрипт:

2005 Pearson Education, Inc. All rights reserved Object-Oriented Programming: Inheritance

2005 Pearson Education, Inc. All rights reserved Introduction Inheritance – Software reusability – Create new class from existing class Absorb existing classs data and behaviors Enhance with new capabilities – Subclass extends superclass Subclass – More specialized group of objects – Behaviors inherited from superclass Can customize – Additional behaviors

2005 Pearson Education, Inc. All rights reserved Introduction (Cont.) Class hierarchy – Direct superclass Inherited explicitly (one level up hierarchy) – Indirect superclass Inherited two or more levels up hierarchy – Single inheritance Inherits from one superclass – Multiple inheritance Inherits from multiple superclasses – Java does not support multiple inheritance

2005 Pearson Education, Inc. All rights reserved Superclasses and subclasses Superclasses and subclasses – Object of one class is an object of another class Example: Rectangle is quadrilateral. – Class Rectangle inherits from class Quadrilateral – Quadrilateral : superclass – Rectangle : subclass – Superclass typically represents larger set of objects than subclasses Example: – superclass: Vehicle Cars, trucks, boats, bicycles, … – subclass: Car Smaller, more-specific subset of vehicles

2005 Pearson Education, Inc. All rights reserved. 5 Fig. 9.1 | Inheritance examples.

2005 Pearson Education, Inc. All rights reserved Superclasses and subclasses (Cont.) Inheritance hierarchy – Inheritance relationships: tree-like hierarchy structure – Each class becomes superclass – Supply members to other classes OR subclass – Inherit members from other classes

2005 Pearson Education, Inc. All rights reserved. 7 Fig. 9.2 | Inheritance hierarchy for university CommunityMembers

2005 Pearson Education, Inc. All rights reserved. 8 Fig. 9.3 | Inheritance hierarchy for Shapes.

2005 Pearson Education, Inc. All rights reserved protected Members protected access – Intermediate level of protection between public and private – protected members accessible by superclass members subclass members Class members in the same package – Subclass access to superclass member Keyword super and a dot (.)

2005 Pearson Education, Inc. All rights reserved. 10 Software Engineering Observation 9.1 Methods of a subclass cannot directly access private members of their superclass. A subclass can change the state of private superclass instance variables only through non - private methods provided in the superclass and inherited by the subclass.

2005 Pearson Education, Inc. All rights reserved Relationship between Superclasses and Subclasses Superclass and subclass relationship – Example: CommissionEmployee/BasePlusCommissionEmployee inheritance hierarchy CommissionEmployee – First name, last name, SSN, commission rate, gross sale amount BasePlusCommissionEmployee – First name, last name, SSN, commission rate, gross sale amount – Base salary

2005 Pearson Education, Inc. All rights reserved Creating and Using a CommissionEmployee Class Class CommissionEmployee – Extends class Object Keyword extends Every class in Java extends an existing class – Except Object Every class inherits Object s methods New class implicitly extends Object – If it does not extend another class

2005 Pearson Education, Inc. All rights reserved. 13 Software Engineering Observation 9.3 The Java compiler sets the superclass of a class to Object when the class declaration does not explicitly extend a superclass.

2005 Pearson Education, Inc. All rights reserved. 14 Outline CommissionEmployee.java (1 of 4) Line 4 Lines 6-10 Line 16 Lines Lines Class CommissionEmployee extends class Object Implicit call to Object constructor Initialize instance variables Declare private instance variables Invoke methods setGrossSales and setCommissionRate to validate data

2005 Pearson Education, Inc. All rights reserved. 15 Outline CommissionEmployee.java (2 of 4)

2005 Pearson Education, Inc. All rights reserved. 16 Outline CommissionEmployee.java (3 of 4) Lines Calculate earnings

2005 Pearson Education, Inc. All rights reserved. 17 Outline CommissionEmployee.java (4 of 4) Lines Override method toString of class Object

2005 Pearson Education, Inc. All rights reserved. 18 Common Programming Error 9.1 It is a syntax error to override a method with a more restricted access modifier a public method of the superclass cannot become a protected or private method in the subclass; a protected method of the superclass cannot become a private method in the subclass.

2005 Pearson Education, Inc. All rights reserved. 19 Common Programming Error 9.1 If a public method could be overridden as a protected or private method, the subclass objects would not be able to respond to the same method calls as superclass objects. Once a method is declared public in a superclass, the method remains public for all that classs direct and indirect subclasses.

2005 Pearson Education, Inc. All rights reserved. 20 Outline CommissionEmployee Test.java (1 of 2) Lines 9-10 Lines Line Instantiate CommissionEmployee objectUse CommissionEmployee s get methods to retrieve the objects instance variable values Use CommissionEmployee s set methods to change the objects instance variable values

2005 Pearson Education, Inc. All rights reserved. 21 Outline CommissionEmployee Test.java (2 of 2) Line 30 Program output Implicitly call objects toString method

2005 Pearson Education, Inc. All rights reserved Creating a BasePlusCommissionEmployee Class without Using Inheritance Class BasePlusCommissionEmployee – Implicitly extends Object – Much of the code is similar to CommissionEmployee private instance variables public methods constructor – Additions private instance variable baseSalary Methods setBaseSalary and getBaseSalary

2005 Pearson Education, Inc. All rights reserved. 23 Outline BasePlusCommission Employee.java (1 of 4) Line 12 Line 24 Add instance variable baseSalary Use method setBaseSalary to validate data

2005 Pearson Education, Inc. All rights reserved. 24 Outline BasePlusCommission Employee.java (2 of 4)

2005 Pearson Education, Inc. All rights reserved. 25 Outline BasePlusCommission Employee.java (3 of 4)

2005 Pearson Education, Inc. All rights reserved. 26 Outline BasePlusCommission Employee.java (4 of 4) Lines Lines Line 102 Lines Method setBaseSalary validates data and sets instance variable baseSalary Method getBaseSalary returns the value of instance variable baseSalary Update method earnings to calculate the earnings of a base-salaried commission employee Update method toString to display base salary

2005 Pearson Education, Inc. All rights reserved. 27 Outline BasePlusCommission EmployeeTest.java (1 of 2) Line 9-11 Lines Instantiate BasePlusCommissionEmployee objectUse BasePluCommissionEmployee s get methods to retrieve the objects instance variable values

2005 Pearson Education, Inc. All rights reserved. 28 Outline BasePlusCommission EmployeeTest.java (2 of 2) Line 29 Line 33 Program output Use BasePlusCommissionEmployee s setBaseSalary methods to set base salary Explicitly call objects toString method

2005 Pearson Education, Inc. All rights reserved. 29 Software Engineering Observation 9.4 Copying and pasting code from one class to another can spread errors across multiple source code files. To avoid duplicating code (and possibly errors), use inheritance.

2005 Pearson Education, Inc. All rights reserved. 30 Software Engineering Observation 9.5 With inheritance, the common instance variables and methods of all the classes in the hierarchy are declared in a superclass. When changes are required for these common features, software developers need only to make the changes in the superclasssubclasses then inherit the changes. Without inheritance, changes would need to be made to all the source code files that contain a copy of the code in question.

2005 Pearson Education, Inc. All rights reserved Creating a CommissionEmployee- BasePlusCommiionEmployee Inheritance Hierarchy Class BasePlusCommissionEmployee2 – Extends class CommissionEmployee – Is a CommissionEmployee – Has instance variable baseSalary – Inherits public and protected members – Constructor not inherited

2005 Pearson Education, Inc. All rights reserved. 32 Outline BasePlusCommission Employee2.java (1 of 3) Line 4 Line 13 Class BasePluCommissionEmployee2 is a subclass of CommissionEmployee Invoke the superclass constructor using the superclass constructor call syntax

2005 Pearson Education, Inc. All rights reserved. 33 Outline BasePlusCommission Employee2.java (2 of 3) Line 34 Lines Compiler generates errors because superclasss instance variable commissionRate and grossSales are private Compiler generates errors because superclasss instance variable firstName, lastName, socialSecurityNumber, grossSales and commissionRate are private

2005 Pearson Education, Inc. All rights reserved. 34 Outline BasePlusCommission Employee2.java (3 of 3) Compiler generated errorss

2005 Pearson Education, Inc. All rights reserved. 35 Common Programming Error 9.2 A compilation error occurs if a subclass constructor calls one of its superclass constructors with arguments that do not match exactly the number and types of parameters specified in one of the superclass constructor declarations.

2005 Pearson Education, Inc. All rights reserved CommissionEmployee- BasePlusCommissionEmployee Inheritance Hierarchy Using protected Instance Variables Use protected instance variables – Enable class BasePlusCommissionEmployee to directly access superclass instance variables – Superclasss protected members are inherited by all subclases of that superclass

2005 Pearson Education, Inc. All rights reserved. 37 Outline Commission Employee2.java (1 of 4) Line 6-10 Declare protected instance variables

2005 Pearson Education, Inc. All rights reserved. 38 Outline Commission Employee2.java (2 of 4)

2005 Pearson Education, Inc. All rights reserved. 39 Outline Commission Employee2.java (3 of 4)

2005 Pearson Education, Inc. All rights reserved. 40 Outline Commission Employee2.java (4 of 4)

2005 Pearson Education, Inc. All rights reserved. 41 Outline BasePlusCommission Employee3.java (1 of 2) Line 13 Must call superclasss constructor

2005 Pearson Education, Inc. All rights reserved. 42 Outline BasePlusCommission Employee3.java (2 of 2) Line 32 Lines Directly access superclasss protected instance variables

2005 Pearson Education, Inc. All rights reserved. 43 Outline BasePlusCommission EmployeeTest3.java (1 of 2)

2005 Pearson Education, Inc. All rights reserved. 44 Outline BasePlusCommission EmployeeTest3.java (2 of 2) Program output

2005 Pearson Education, Inc. All rights reserved. 45 Common Programming Error 9.3 When a superclass method is overridden in a subclass, the subclass version often calls the superclass version to do a portion of the work. Failure to prefix the superclass method name with the keyword super and a dot (. ) separator when referencing the superclasss method causes the subclass method to call itself, creating an error called infinite recursion.

2005 Pearson Education, Inc. All rights reserved Constructors in Subclasses Instantiating subclass object – Chain of constructor calls subclass constructor invokes superclass constructor – Implicitly or explicitly Base of inheritance hierarchy – Last constructor called in chain is Object s constructor – Original subclass constructors body finishes executing last – Example: CommissionEmployee3- BasePlusCommissionEmployee4 hierarchy CommissionEmployee3 constructor called second last (last is Object constructor) CommissionEmployee3 constructors body finishes execution second (first is Object constructors body)

2005 Pearson Education, Inc. All rights reserved. 47 Software Engineering Observation 9.8 When a program creates a subclass object, the subclass constructor immediately calls the superclass constructor (explicitly, via super, or implicitly). The superclass constructors body executes to initialize the superclasss instance variables that are part of the subclass object, then the subclass constructors body executes to initialize the subclass- only instance variables.(cont…)

2005 Pearson Education, Inc. All rights reserved. Constructor and Inheritance Invocation of a superclass constructor must be the first line in the subclass constructor. With super(), the superclass no-argument constructor is called. With super(parameter list), the superclass constructor with a matching parameter list is called. If a constructor does not explicitly invoke a superclass constructor, the Java compiler automatically inserts a call to the no-argument constructor of the superclass. If the super class does not have a no- argument constructor, you will get a compile-time error. Object does have such a constructor, so if Object is the only superclass, there is no problem. 48

2005 Pearson Education, Inc. All rights reserved. 49 Outline CommissionEmployee 4.java (1 of 4) Lines Constructor outputs message to demonstrate method call order.

2005 Pearson Education, Inc. All rights reserved. 50 Outline CommissionEmployee 4.java (2 of 4)

2005 Pearson Education, Inc. All rights reserved. 51 Outline CommissionEmployee 4.java (3 of 4)

2005 Pearson Education, Inc. All rights reserved. 52 Outline CommissionEmployee 4.java (4 of 4)

2005 Pearson Education, Inc. All rights reserved. 53 Outline BasePlusCommission Employee5.java (1 of 2) Lines Constructor outputs message to demonstrate method call order.

2005 Pearson Education, Inc. All rights reserved. 54 Outline BasePlusCommission Employee5.java (2 of 2)

2005 Pearson Education, Inc. All rights reserved. 55 Outline ConstructorTest.java (1 of 2) Lines 8-9 Lines Instantiate two BasePlusCommissionEmployee5 objects to demonstrate order of subclass and superclass constructor method calls. Instantiate CommissionEmployee4 object

2005 Pearson Education, Inc. All rights reserved. 56 Outline ConstructorTest.java (2 of 2) Subclass BasePlusCommissionEmployee5 constructor body executes after superclass CommissionEmployee4 s constructor finishes execution.

2005 Pearson Education, Inc. All rights reserved. final and Inheritance Final classes cant be inherited from subclassed final methods cannot be overridden in subclasses. private methods are implicitly final.

2005 Pearson Education, Inc. All rights reserved Object Class Class Object methods – clone – equals – finalize – getClass – hashCode – notify, notifyAll, wait – toString

2005 Pearson Education, Inc. All rights reserved. 59 Fig | Object methods that are inherited directly or indirectly by all classes. (Part 1 of 4)

2005 Pearson Education, Inc. All rights reserved. 60 Fig | Object methods that are inherited directly or indirectly by all classes. (Part 2 of 4)

2005 Pearson Education, Inc. All rights reserved. 61 Fig | Object methods that are inherited directly or indirectly by all classes. (Part 3 of 4)

2005 Pearson Education, Inc. All rights reserved. 62 Fig | Object methods that are inherited directly or indirectly by all classes. (Part 4 of 4)