Comp1004: Inheritance I Super and Sub-classes. Coming up Inheritance and Code Duplication – Super and sub-classes – Inheritance hierarchies Inheritance.

Slides:



Advertisements
Similar presentations
Introduction to Java 2 Programming
Advertisements

General OO Concepts Objectives For Today: Discuss the benefits of OO Programming Inheritance and Aggregation Abstract Classes Encapsulation Introduce Visual.
OOP: Inheritance By: Lamiaa Said.
OOP (Java): Inheritance/ OOP Objectives – –to introduce inheritance, superclasses, subclasses, polymorphic data structures, and wrapper.
Inheritance in collections Week Main concepts to be covered Inheritance in ArrayList objects Subtyping Substitution.
CS1054: Lecture 18 - Inheritance. The DoME example "Database of Multimedia Entertainment" stores details about CDs and videos –CD: title, artist, # tracks,
Objects First With Java A Practical Introduction Using BlueJ Improving structure with inheritance 2.0.
Improving structure with inheritance Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling Main concepts.
Georgia Institute of Technology Workshop for CS-AP Teachers Chapter 3 Advanced Object-Oriented Concepts.
Objectives Introduction to Inheritance and Composition (Subclasses and SuperClasses) Overriding (and extending), and inheriting methods and constructors.
Chapter 8 Improving Structure with Inheritance. The DoME Example The Database of Multimedia Entertainment We will be storing information about CDs and.
Improving structure with inheritance (Chapters 8 and 9)
Improving structure with inheritance
Improving structure with inheritance. 25/11/2004Lecture 7: Inheritance2 Main concepts to be covered Inheritance Subtyping Substitution Polymorphic variables.
Inheritance. Extending Classes It’s possible to create a class by using another as a starting point  i.e. Start with the original class then add methods,
Grouping Objects 3 Iterators, collections and the while loop.
Inheritance Chapter 8.
OOP in Java Nelson Padua-Perez Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
CPSC150 Inheritance Details Chapter 9. CPSC150 Print in Entertainment ver 2 (with inheritance): public void print() { System.out.print("title: " + title.
Objects First with Java A Practical Introduction using BlueJ
CS 106 Introduction to Computer Science I 11 / 15 / 2006 Instructor: Michael Eckmann.
Make Sure You Know All This!. Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling 2 Objects and Classes.
Understanding class definitions – Part II –. Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling Main.
STREAM STREAM A software process The Mañana Principle The Mañana Principle Don’t try to everything at once! Static Methods Static Methods Stateless Utility.
Abstract Classes and Interfaces
More about inheritance Exploring polymorphism 3.0.
5.0 Objects First with Java A Practical Introduction using BlueJ David J. Barnes Michael Kölling.
Intro to OOP with Java, C. Thomas Wu
Programming Fundamentals 2: Inheritance/ F II Objectives – –the use of super, overriding, method polymorphism (dynamic binding), protected.
1 Object-Oriented Software Engineering CS Interfaces Interfaces are contracts Contracts between software groups Defines how software interacts with.
Improving structure with inheritance Main concepts to be covered Inheritance Subtyping Substitution Polymorphic variables Objects First with Java.
Improving structure with inheritance Main concepts to be covered Inheritance Subtyping Substitution Polymorphic variables Objects First with Java.
Programming Fundamentals 2: Inheritance/ F II Objectives – –to introduce inheritance, superclasses, subclasses, polymorphic data structures,
Inheritance Chapter 10 Programs built from objects/instances of classes An O.O. approach – build on earlier work. Use classes in library and ones you have.
Object Oriented Software Development
More about inheritance Exploring polymorphism 5.0.
5.0 Objects First with Java A Practical Introduction using BlueJ David J. Barnes Michael Kölling.
Objects First With Java A Practical Introduction Using BlueJ Method overriding 2.0.
Final Review. From ArrayLists to Arrays The ArrayList : used to organize a list of objects –It is a class in the Java API –the ArrayList class uses an.
Inheritance and Class Hierarchies Chapter 3. Chapter 3: Inheritance and Class Hierarchies2 Chapter Objectives To understand inheritance and how it facilitates.
Improving structure with inheritance 3.0. The media project stores details about CDs and DVDs –CD: title, artist, number of tracks, playing time, got-it,
Session 06: C# OOP-3 Inheritance and Polymorphism. Static and dynamic type of an object. FEN AK - IT: Softwarekonstruktion.
Quick Review of OOP Constructs Classes:  Data types for structured data and behavior  fields and methods Objects:  Variables whose data type is a class.
Terms and Rules II Professor Evan Korth New York University (All rights reserved)
OOP Basics Classes & Methods (c) IDMS/SQL News
1 COS 260 DAY 17 Tony Gauvin. 2 Agenda Questions? 7 th Mini quiz –Chapter 7 –Password “GoBengals” –40 min Assignment 4 posted –Due Nov 9 (one week) Capstone.
CS 116 OBJECT ORIENTED PROGRAMMING II LECTURE 6 Acknowledgement: Contains materials provided by George Koutsogiannakis and Matt Bauer.
Comp1004: Building Better Objects II Encapsulation and Constructors.
Notices Assn 2 is due tomorrow, 7pm. Moodle quiz next week – written in the lab as before. Everything up to and including today’s lecture: Big Topics are.
Coming up Which methods are where? – Overriding Calling super’s methods Coupling and cohesion.
Comp1004: Inheritance II Polymorphism. Coming up Inheritance Reminder Overriding methods – Overriding and substitution Dynamic Binding Polymorphism –
Comp1004: Conclusions Revision Session. Coming up Recap – The Basics – The Pillars – The Extras Feedback + Course Evaluation Structure of the Exam Some.
Improving structure with inheritance Main concepts to be covered Inheritance Subtyping Substitution Polymorphic variables © 2017 Pearson Education,
Coming up Inheritance – Code duplication – Super classes – Constructors Polymorphic collections – “Anywhere a super class is, a sub class can go” Casting.
9 Improving structure with inheritance
Objects First with Java A Practical Introduction using BlueJ
More about inheritance
Objects First with Java A Practical Introduction using BlueJ
Lecture 19 - Inheritance (Contd).
Java Programming Language
More about inheritance
COS 260 DAY 18 Tony Gauvin.
Objects First with Java A Practical Introduction using BlueJ
Objects First with Java
Java Programming Language
Objects First with Java A Practical Introduction using BlueJ
Comp1202: Inheritance I Super and Sub-classes.
Improving structure with inheritance
Lecture 15 Inheritance.
Presentation transcript:

Comp1004: Inheritance I Super and Sub-classes

Coming up Inheritance and Code Duplication – Super and sub-classes – Inheritance hierarchies Inheritance and Encapsulation – Constructors and super() Inheritance, References and Collections – Substitution The Object Class – Inheritance at the core of Java

Inheritance and Code Duplication

Duplication in Classes We have seen how duplicating code is bad – It creates opportunities for errors (inconsistency) – Is harder to maintain – Makes code harder to read But consider properly encapsulated but similar classes – (classes that are responsible for themselves, and hide methods via the protected keyword) – They can’t share code with another class – So do you have to duplicate it?

Example Think about music CDs and films on DVDs... What properties do they share? N.B. The following example is based on the the DOME project from the BlueJ book

DoME classes Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling N.B This is a simple form of class diagram The top half shows fields The bottom half shows methods

DVD Source Code public class DVD{ protected String title; protected String director; protected String comment; DVD(String theTitle, String theDirector) { title = theTitle;director = theDirector;comment = " "; } void setComment(String newComment) {... } String getComment() {... } void print() {... }...}

public class CD{ protected String title; protected String artist; protected String comment; CD(String theTitle, String theArtist) { title = theTitle;artist = theArtist;comment = " "; } void setComment(String newComment) {... } String getComment() {... } void print() {... }...} public class DVD{ protected String title; protected String director; protected String comment; DVD(String theTitle, String theDirector) { title = theTitle;director = theDirector;comment = " "; } void setComment(String newComment) {... } String getComment() {... } void print() {... }...} CD Source Code DVD Source Code

public class CD{ protected String title; protected String artist; protected String comment; CD(String theTitle, String theArtist) { title = theTitle;artist = theArtist;comment = " "; } void setComment(String newComment) {... } String getComment() {... } void print() {... }...} public class DVD{ protected String title; protected String director; protected String comment; DVD(String theTitle, String theDirector) { title = theTitle;director = theDirector;comment = " "; } void setComment(String newComment) {... } String getComment() {... } void print() {... }...} A kind of Code Duplication CD Source Code DVD Source Code

Code Duplication Even this code duplication is a: Bad Thing If you debug one bit of code in one class, you have to change each duplicated code fragment individually. This can take ages! If you have 150 classes with the same bit of code, it’s very easy to miss one...

Wouldn’t it be good... If a class could inherit some properties that it shares with other classes – a bit like a common template – shipping out common functionality and keeping the specific stuff in the class In Object Orientated programming, this is known as inheritance

Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling Using inheritance The sub-classes inherit all the properties and methods from the superclass Any class that is inherited from is called a superclass Any class that inherits from another is called a subclass They can also add more of their own

Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling Inheritance hierarchies Any subclass can also be a superclass This can create a tree of classes called an inheritance hierarchy

Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling Inheritance hierarchies Any subclass can also be a superclass This can create a tree of classes called an inheritance hierarchy N.B How class diagrams show inheritance (with the arrows pointing from sub-class to superclass)

Inheritance in Java public class Item { private String title; private int playingTime; private boolean gotIt; private String comment; // constructors and methods omitted. } You don’t need to add anything to the superclass

Inheritance in Java You don’t need to add anything to the superclass public class CD extends Item { private String artist; private int numberOfTracks; // constructors and methods omitted. } public class DVD extends Item { private String director; // constructors and methods omitted. } You declare the inheritance in the sub-class using the extends keyword Q: What is the advantage of leaving the superclass unchanged?

Inheritance in Java You don’t need to add anything to the superclass public class CD extends Item { private String artist; private int numberOfTracks; // constructors and methods omitted. } public class DVD extends Item { private String director; // constructors and methods omitted. } You declare the inheritance in the sub-class using the extends keyword Q: What is the advantage of leaving the superclass unchanged? A: So you can inherit from any class – even those you didn’t create and/or can’t edit

Inheritance and Encapsulation

The Three Pillars of OOP EncapsulationInheritancePolymorphism

Encapsulation and Inheritance Encapsulation is the principle that every class should be responsible for itself – We enforce it using the public and protected keywords But is the encapsulation within the class or within the whole inheritance hierarchy? In other words: Should sub-classes be able to see all the properties and methods in their super classes?

Encapsulation Expanded In fact Java uses three keywords for encapsulation Public – Everyone can see it Protected – Only this class and its sub-classes can see it Private – Only this class can see it

Encapsulation Expanded In fact Java uses three keywords for encapsulation Public – Everyone can see it Protected – Only this class and its sub-classes can see it Private – Only this class can see it Rule-of-thumb: assume everything should be protected

Encapsulation Expanded In fact Java uses three keywords for encapsulation Public – Everyone can see it Protected – Only this class and its sub-classes can see it Private – Only this class can see it Rule-of-thumb: assume everything should be protected Explicitly make public the methods (and sometimes properties) that you want other classes to use Explicitly make private any implementation details that you want to hide even from sub-classes

Encapsulation Expanded In fact Java uses three keywords for encapsulation Public – Everyone can see it Protected – Only this class and its sub-classes can see it Private – Only this class can see it Rule-of-thumb: assume everything should be protected Explicitly make public the methods (and sometimes properties) that you want other classes to use Explicitly make private any implementation details that you want to hide even from sub-classes You will probably end up with few protected things at all!

Encapsulation and Constructors Remember Constructors – Special methods that initialise an object when you create it using the new keyword Constructors are important for encapsulation as a class should be in charge of initialising itself

So Are These Classes Encapsulated? public class Item { protected String title; protected int playingTime; protected boolean gotIt; protected String comment; public Item(String theTitle, int time) { title = theTitle; playingTime = time; gotIt = false; comment = ""; } // methods omitted } public class CD extends Item { protected String artist; protected int numberOfTracks; public CD( String theTitle, String theArtist, int tracks, int time) { title = theTitle; playingTime = time; gotIt = false; comment = ""; artist = theArtist; numberOfTracks = tracks; } // methods omitted }

So Are These Classes Encapsulated? public class Item { protected String title; protected int playingTime; protected boolean gotIt; protected String comment; public Item(String theTitle, int time) { title = theTitle; playingTime = time; gotIt = false; comment = ""; } // methods omitted } public class CD extends Item { protected String artist; protected int numberOfTracks; public CD( String theTitle, String theArtist, int tracks, int time) { title = theTitle; playingTime = time; gotIt = false; comment = ""; artist = theArtist; numberOfTracks = tracks; } // methods omitted } No. Because here CD is taking the responsibility for constructing properties defined in the Item class

Better to call the super-class constructor public class Item { private String title; private int playingTime; private boolean gotIt; private String comment; public Item(String theTitle, int time) { title = theTitle; playingTime = time; gotIt = false; comment = ""; } // methods omitted } public class CD extends Item { private String artist; private int numberOfTracks; public CD( String theTitle, String theArtist, int tracks, int time) { super(theTitle, time); artist = theArtist; numberOfTracks = tracks; } // methods omitted } We can call the super-class’ constructor using the super keyword. Now we can make the properties private and we have proper encapsulation.

Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling Superclass constructor rules In fact subclass constructors must always contain a 'super' call. If none is written, the compiler acts as if there is one (without parameters) – works only if the superclass has a constructor without parameters Must be the first statement in the subclass constructor.

Inheritance, References and Collections

References and Inheritance Item item1 = new CD(“Nevermind”, “Nivana”, 11, 56); Item item2 = new DVD(“Gladiator”, “Ridley Scott”, 155); item1.print(); item2.print(); Will this code work?

References and Inheritance Item item1 = new CD(“Nevermind”, “Nivana”, 11, 56); Item item2 = new DVD(“Gladiator”, “Ridley Scott”, 155); item1.print(); item2.print(); Yes, this is called substitution. An Item reference can store any sub-class of Item

Collections and Inheritance ArrayList items; items = new ArrayList (); items.add( new CD(“Nevermind”, “Nivana”, 11, 56) ); items.add( new DVD(“Gladiator”, “Ridley Scott”, 155) ); For(Item i : items) { i.print(); } Yes, this is called substitution. An Item reference can store any sub-class of Item This is useful in collections. Because we can declare a collection of super-classes and can use it to store any type of sub- class

Collections and Inheritance ArrayList items; items = new ArrayList (); items.add( new CD(“Nevermind”, “Nivana”, 11, 56) ); items.add( new DVD(“Gladiator”, “Ridley Scott”, 155) ); For(Item i : items) { i.print(); int tracks = i.getNumberOfTracks(); System.out.println(tracks); } Yes, this is called substitution. An Item reference can store any sub-class of Item But will this work?

Collections and Inheritance ArrayList items; items = new ArrayList (); items.add( new CD(“Nevermind”, “Nivana”, 11, 56) ); items.add( new DVD(“Gladiator”, “Ridley Scott”, 155) ); For(Item i : items) { i.print(); int tracks = i.getNumberOfTracks(); System.out.println(tracks); } Yes, this is called substitution. An Item reference can store any sub-class of Item No, because once its stored in an Item reference java will forget if it’s a CD or a DVD. This wont compile as Item has a print method but not getNumberOfTracks

The Object Class

Inheritance is a Core Part of Java Where is the ‘default constructor’ defined? How about the.equals() method, – it’s not a part of the String class How come we can pass any object to System.out.println() ? Where are these magical methods defined?

Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling The Object Class All classes inherit from Object.

The Object Class You’ve been dabbling with inheritance the whole time You don’t need to extend the Object class (you can if you really want to) as every object extends the Object class (unless it extends something else) Look Object up in the API

Summary Inheritance and Code Duplication – Super and sub-classes – Inheritance hierarchies Inheritance and Encapsulation – Constructors and super() Inheritance, References and Collections – Substitution The Object Class – Inheritance at the core of Java