1 / 16

Computer Science I Inheritance Professor Evan Korth New York University

Computer Science I Inheritance Professor Evan Korth New York University. Road Map. Inheritance Class hierarchy Overriding methods Constructors Modifier: protected Keyword: super Reading: Liang 6: 9.1 – 9.4 Liang 7: 10.1 – 10.5 Liang 8: 11.1 - 11.4. Introduction to Inheritance.

rania
Download Presentation

Computer Science I Inheritance Professor Evan Korth New York University

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Computer Science IInheritanceProfessor Evan KorthNew York University

  2. Road Map • Inheritance • Class hierarchy • Overriding methods • Constructors • Modifier: protected • Keyword: super • Reading: • Liang 6: 9.1 – 9.4 • Liang 7: 10.1 – 10.5 • Liang 8: 11.1 - 11.4 Evan Korth New York University

  3. Introduction to Inheritance • Often programmers find themselves designing classes with many similarities. • How can we take advantage of these similarities to reduce the amount of code we write? • How can we take advantage of these similarities to write code which is less likely to contain errors? • How can we take advantage of existing code when we want to design something similar to the existing code? Evan Korth New York University

  4. Introduction to Inheritance • Inheritance is an object oriented construct which promotes code reuse by allowing you to create a new class using an existing classes as a “starting point”. • You simply state which class you want to use as a base in order to inherit its members (fields and methods). • You can add or modify its members once you have inherited them. • Terminology • Superclass (parent class, base class) • The original class which has its members inherited • Typically, this is the more general class • Subclass (child class, derived class) • The class which inherits members from the superclass • In this class, we can specialize the general class by modifying and adding functionality. Evan Korth New York University

  5. Inheritance • Abstraction • Focus on commonalities among objects in system • “is-a” vs. “has-a” • “is-a” • Inheritance • subclass object treated as superclass object • Example: Car is a vehicle • Vehicle properties/behaviors also car properties/behaviors • “has-a” • Composition • Object contains one or more objects of other classes as members • Example: Car has a steering wheel

  6. 9.2 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

  7. 9.2 Superclasses and Subclasses (Cont.) • Inheritance examples

  8. 9.2 Superclasses and Subclasses (Cont.) • Inheritance hierarchy • Inheritance relationships: tree-like hierarchy structure • Each class becomes • superclass • Supply data/behaviors to other classes AND / OR • subclass • Inherit data/behaviors from other classes

  9. CommunityMember Employee Student Alumnus Faculty Staff Administrator Teacher Fig. 9.2 Inheritance hierarchy for university CommunityMembers.

  10. TwoDimensionalShape ThreeDimensionalShape Circle Triangle Sphere Cube Tetrahedron Square Shape Fig. 9.3 Inheritance hierarchy for Shapes.

  11. Inheritance in Java • The keyword extends is used in Java for inheritance. • A class that extends another class is said to be a subclass. It is also known as a child class or a derived class. • The class it extends is called a superclass. Sometimes the superclass is called a base class or a parent class. • A subclass can also modify its method members. This is referred to as overriding. • A subclass inherits the members of it’s superclass. • Syntax: public class Student extends CommunityMember Evan Korth New York University

  12. Overriding methods • Often a subclass does not want to have the same exact method implementations as it’s superclass. In this case, the subclass can override the methods that it wants to change. • To override a method, you must re-declare the method in the subclass. The new method must have the exact same signature as the superclass’ method you are overriding. • Only non-private methods can be overridden because private methods are not visible in the subclass. • Note: You cannot override static methods. • Note: You cannot override fields. • In the above two cases, when you attempt to override them, you are really hiding them. Evan Korth New York University

  13. Overload vs Override • Overloading a method refers to having two methods which share the same name but have different signatures. • Overriding a method refers to having a new implementation of a method with the same signature in a subclass. Evan Korth New York University

  14. Keyword super • The keyword super can be used in a subclass to refer to members of the subclass’ superclass. It is used in two ways: • To invoke a constructor of the superclass (more about this on the next slide). For example (note: the keyword new is not used): • super (); • super (params); • To call a superclass’ method (it is only necessary to do so when you override (more on overriding soon too) the method). For example: • super.superclassMethodName(); • super.superclassMethodName(params); Evan Korth New York University

  15. Inheritance and constructors • Constructors do not get inherited to a subclass. Instead, the subclass’ constructor automatically calls it’s superclass’ zero parameter constructor before it executes any of the code in it’s own constructor. • If you do not want to use the parent’s zero parameter constructor, you must explicitly invoke one of the superclass’ other constructors with the keyword super. • If you do this, the call to the superclass’ constructor must be the first line of code in the subclass’ constructor. e.g: Student (String name) { super (?params?); … • If the superclass has no zero parameter constructor, the first line of any subclass constructor MUST explicitly invoke another superclass constructor. Evan Korth New York University

  16. Indirect Inheritance • It is possible in Java to have an arbitrarily long line of ancestors (i.e. many superclasses on your way to Object) • The members you inherit from classes above your superclass are said to be indirectly inherited. • It does not matter where a class’ members come from – a client program always uses similar syntax to access the fields and methods (whether you define it in a class, inherit it directly from your superclass or indirectly from another class in the hierarchy). Evan Korth New York University

More Related