Chapter 6 Reflection

Similar documents
11/19/2014. Inheritance. Chapter 7: Inheritance. Inheritance. Inheritance. Java Software Solutions for AP* Computer Science A 2nd Edition

Inheritance -- Introduction

Polymorphism. Final Exam. November 26, Method Overloading. Quick Review of Last Lecture. Overriding Methods.

Inheritance. Inheritance Reserved word protected Reserved word super Overriding methods Class Hierarchies Reading for this lecture: L&L

Inheritance and Polymorphism

Object Oriented Features. Inheritance. Inheritance. CS257 Computer Science I Kevin Sahr, PhD. Lecture 10: Inheritance

8.1 Inheritance. 8.1 Class Diagram for Words. 8.1 Words.java. 8.1 Book.java 1/24/14

Inheritance Chapter 8. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

Polymorphism. Agenda

ECE 122. Engineering Problem Solving with Java

Programming in C# Inheritance and Polymorphism

ECE 122. Engineering Problem Solving with Java

Inheritance. Quick Review of Last Lecture. November 12, Passing Arguments. Passing Arguments. Variable Assignment Revisited

Polymorphism. Polymorphism is an object-oriented concept that allows us to create versatile software designs

Java Object Oriented Design. CSC207 Fall 2014

COSC 121: Computer Programming II. Dr. Bowen Hui University of Bri?sh Columbia Okanagan

Polymorphism and Inheritance

OVERRIDING. 7/11/2015 Budditha Hettige 82

CS-202 Introduction to Object Oriented Programming

Starting Out with Java: From Control Structures Through Objects Sixth Edition

Chapter 9 Inheritance

Inheritance. Inheritance allows the following two changes in derived class: 1. add new members; 2. override existing (in base class) methods.

CS111: PROGRAMMING LANGUAGE II

COSC 121: Computer Programming II. Dr. Bowen Hui University of Bri?sh Columbia Okanagan

Inheritance CSC 123 Fall 2018 Howard Rosenthal

Lab 10: Inheritance (I)

Inheritance and Polymorphism

Chapter 10: Inheritance

Table of Contents Date(s) Title/Topic Page #s. Chapter 4: Writing Classes 4.1 Objects Revisited

C++ Important Questions with Answers

CSCE3193: Programming Paradigms

Enhanced Class Design -- Introduction

Contents. I. Classes, Superclasses, and Subclasses. Topic 04 - Inheritance

This week. Tools we will use in making our Data Structure classes: Generic Types Inheritance Abstract Classes and Interfaces

Computer Science II (20073) Week 1: Review and Inheritance

Inheritance, Polymorphism, and Interfaces

HAS-A Relationship. Association is a relationship where all objects have their own lifecycle and there is no owner.

Anatomy of a Class Encapsulation Anatomy of a Method

Object-Oriented Concepts and Principles (Adapted from Dr. Osman Balci)

Review for the. Final Exam. Final Exam. December 8, Final Format. Final Format. Ways to get an A on the Final. A Crash Course in Java

Chapter 11: Inheritance

ITI Introduction to Computing II

HAS-A Relationship. If A uses B, then it is an aggregation, stating that B exists independently from A.

CLASS DESIGN. Objectives MODULE 4

Inheritance. Benefits of Java s Inheritance. 1. Reusability of code 2. Code Sharing 3. Consistency in using an interface. Classes

Java Fundamentals (II)

Programming II (CS300)

ITI Introduction to Computing II

Chapter 5 Object-Oriented Programming

More Relationships Between Classes

More About Objects. Zheng-Liang Lu Java Programming 255 / 282

Polymorphism. return a.doublevalue() + b.doublevalue();

8. Polymorphism and Inheritance

Computer Science 210: Data Structures

HAS-A Relationship. Association is a relationship where all objects have their own lifecycle and there is no owner.

INHERITANCE & POLYMORPHISM. INTRODUCTION IB DP Computer science Standard Level ICS3U. INTRODUCTION IB DP Computer science Standard Level ICS3U

CS 112 Introduction to Programming

Admin. q Admin and recap q Class inheritance

Object Oriented Programming. Java-Lecture 11 Polymorphism

9/10/2018 Programming Data Structures Inheritance

What is Inheritance?

Java How to Program, 8/e

Object Oriented Programming is a programming method that combines: Advantage of Object Oriented Programming

COP 3330 Final Exam Review

Lesson 10A OOP Fundamentals. By John B. Owen All rights reserved 2011, revised 2014

Argument Passing All primitive data types (int etc.) are passed by value and all reference types (arrays, strings, objects) are used through refs.

Lecture Contents CS313D: ADVANCED PROGRAMMING LANGUAGE. What is Inheritance?

Sorting. Sorting. Selection sort

Introductory Programming Inheritance, sections

Abstract Classes and Polymorphism CSC 123 Fall 2018 Howard Rosenthal

Inheritance and Interfaces

CompuScholar, Inc. 9th - 12th grades

Graphical Interface and Application (I3305) Semester: 1 Academic Year: 2017/2018 Dr Antoun Yaacoub

Inheritance (Outsource: )

First IS-A Relationship: Inheritance

CSCI-142 Exam 1 Review September 25, 2016 Presented by the RIT Computer Science Community

CS313D: ADVANCED PROGRAMMING LANGUAGE

Object-Oriented Programming

Inheritance. Chapter 7. Chapter 7 1

Chapter 10 Classes Continued. Fundamentals of Java

CS 251 Intermediate Programming Inheritance

BBM 102 Introduction to Programming II Spring Inheritance

Reviewing for the Midterm Covers chapters 1 to 5, 7 to 9. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

PROGRAMMING LANGUAGE 2

CSC207H: Software Design. Java + OOP. CSC207 Winter 2018

Chapter 14 Abstract Classes and Interfaces

IT101. Inheritance, Encapsulation, Polymorphism and Constructors

Inheritance. Transitivity

Exercise: Singleton 1

Chapter 4: Writing Classes

Object Oriented Programming in Java. Jaanus Pöial, PhD Tallinn, Estonia

Inheritance and object compatibility

Example: Count of Points

Computer Science 2 Lecture 4 Inheritance: Trinidad Fruit Stand 02/15/2014 Revision : 1.7

Classes and Inheritance Extending Classes, Chapter 5.2

CS111: PROGRAMMING LANGUAGE II

Overview of OOP. Dr. Zhang COSC 1436 Summer, /18/2017

Introduction to Inheritance

CMSC 132: Object-Oriented Programming II

Example: Count of Points

Transcription:

Table of Contents Date(s) Title/Topic Page #s 3/11 Chapter 6 Reflection/Corrections 94 Chapter 7: Inheritance 95 7.1 Creating Subclasses 96 Chapter 6 Reflection look over your Ch 6 Test and write down comments/ reflections/corrections p. 94

Chapter 7: Inheritance Another fundamental object-oriented technique is inheritance, used to organize and create reusable classes Chapter 7 focuses on: > deriving new classes from existing classes > creating class hierarchies > abstract classes > polymorphism via inheritance > inheritance used in graphical user interfaces Chapter 7: Inheritance

Set up p. 96 for Cornell notes - we will not have a HW page today and we will use p. 97 for the next lesson 7.1 Creating Subclasses Go to Google Classroom and get the sample programs that are posted 96 Inheritance Inheritance allows a software developer to derive a new class from an existing one The existing class is called the parent class, or superclass, or base class The derived class is called the child class or subclass. As the name implies, the child inherits characteristics of the parent That is, the child class inherits the methods and data defined for the parent class

Inheritance To tailor a derived class, the programmer can add new variables or methods, or can modify the inherited ones Software reuse is at the heart of inheritance By using existing software components to create new ones, we capitalize on all the effort that went into the design, implementation, and testing of the existing software Inheritance relationships often are shown graphically in a UML class diagram, with an arrow with an open arrowhead pointing to the parent class Inheritance should create an is-a relationship, meaning the child is a more specific version of the parent

inheritance Software reuse is at the heart of inheritance allows a software developer to derive a new class from an existing one existing class is called the parent class, or superclass, or base class derived class is called the child class or subclass child inherits characteristics (methods and data) of parent you can add new variables or methods, or can modify the inherited ones a car "is-a" vehicle deriving subclasses In Java, we use the reserved word extends to establish an inheritance relationship class Car extends Vehicle { // class contents }

See Words.java See Book.java See Dictionary.java visibility modifiers determine which class members can be used by derived classes and which cannot Variables and methods declared with: > public visibility can be used > private visibility cannot

The super Reference Constructors cannot be used in child classes, even though they have public visibility Yet we often want to use the parent's constructor to set up the "parent's part" of the object The super reference can be used to refer to the parent class, and often is used to invoke the parent's constructor See Words2.java See Book2.java See Dictionary2.java The super Reference A child s constructor is responsible for calling the parent s constructor The first line of a child s constructor should use the super reference to call the parent s constructor The super reference can also be used to reference other variables and methods defined in the parent s class

The super Reference can be used to refer to the parent class, and often is used to invoke the parent's constructor A child s constructor is responsible for calling the parent s constructor The first line of a child s constructor should use the super reference to call the parent s constructor The super reference can also be used to reference other variables and methods defined in the parent s class Multiple Inheritance Java supports single inheritance, meaning that a derived class can have only one parent class Multiple inheritance allows a class to be derived from two or more classes, inheriting the members of all parents Collisions, such as the same variable name in two parents, have to be resolved Java does not support multiple inheritance In most cases, the use of interfaces gives us aspects of multiple inheritance without the overhead

Summary - at bottom of p. 96 Describe the relationship between a parent class and a child class. A child class is derived from a parent class using inheritance. The methods and variables of the parent class automatically become a part of the child class, according to the rules of the visibility modifiers used to declare them. Table of Contents Date(s) Title/Topic Page #s 3/14 7.2 Class Hierarchies 97 Set up p. 97 for Cornell notes 7.2 Class Hierarchies no summary 97

Overriding Methods A child class can override the definition of an inherited method in favor of its own The new method must have the same signature as the parent's method, but can have a different body The type of the object executing the method determines which version of the method is invoked See Messages.java (Google Classroom) See Thought.java (Google Classroom) See Advice.java (Google Classroom)

Overloading vs. Overriding Don't confuse the concepts of overloading and overriding Overloading deals with multiple methods with the same name in the same class, but with different signatures Overriding deals with two methods, one in a parent class and one in a child class, that have the same signature Overloading lets you define a similar operation in different ways for different data Overriding lets you define a similar operation in different ways for different object types Class Hierarchies A child class of one parent can be the parent of another child, forming a class hierarchy

Class Hierarchies Two children of the same parent are called siblings Common features should be put as high in the hierarchy as is reasonable An inherited member is passed continually down the line Therefore, a child class inherits from all its ancestor classes There is no single class hierarchy that is appropriate for all situations The Object Class A class called Object is defined in the java.lang package of the Java standard class library All classes are derived from the Object class If a class is not explicitly defined to be the child of an existing class, it is assumed to be the child of the Object class Therefore, the Object class is the ultimate root of all class hierarchies

The Object Class The Object class contains a few useful methods, which are inherited by all classes For example, the tostring method is defined in the Object class Every time we have defined tostring, we have actually been overriding an existing definition The tostring method in the Object class is defined to return a string that contains the name of the object s class together along with some other information The Object Class All objects are guaranteed to have a tostring method via inheritance Thus the println method can call tostring for any object that is passed to it See Academia.java (Google Classroom) See Student.java (Google Classroom) See StudentAthlete.java (Google Classroom)

The Object Class The equals method returns true if two references are aliases can override equals in any class to define equality in some more appropriate way The String class (as we've seen) defines the equals method to return true if two String objects contain the same characters > the String class has overridden the equals method inherited from Object in favor of its own version Abstract Classes a placeholder in a class hierarchy that represents a generic concept cannot be instantiated We use the modifier abstract on the class header to declare a class as abstract: public abstract class Whatever { // contents }

Abstract Classes An abstract class often contains abstract methods with no definitions (like an interface does) Unlike an interface, the abstract modifier must be applied to each abstract method An abstract class typically contains non-abstract methods (with bodies), further distinguishing abstract classes from interfaces A class declared as abstract does not need to contain abstract methods Abstract Classes The child of an abstract class must override the abstract methods of the parent, or it too will be considered abstract An abstract method cannot be defined as static (because it has no definition yet) The use of abstract classes is a design decision it helps us establish common elements in a class that is too general to instantiate See Pets.java (Google Classroom) See Pet.java (Google Classroom) See Dog.java (Google Classroom) See Snake.java (Google Classroom)

Lab Exercises 7.1 Exploring Inheritance

no notebook notes today Indirect Use of Members An inherited member can be referenced directly by name in the child class, as if it were declared in the child class But even if a method or variable is not directly accessible by a child, it can still be accessed indirectly through parent methods See FoodAnalysis.java (Google Classroom) See FoodItem.java (Google Classroom) See Pizza.java (Google Classroom)

Designing for Inheritance Inheritance should be carefully considered during software design Every derivation should be an is-a relationship Design a class hierarchy so that it can be reused in the future Use interfaces to create a class that serves multiple roles (simulating multiple inheritance) Override general methods such as tostring and equals appropriately See page 388 for more items to keep in mind during design Lab Exercises 7.1 Exploring Inheritance Lab Exercises 7.2 A Sorted Integer List

Today's Tasks mentormoodle.illinicloud.org post or respond to a post on our Moodle site under your mentor's name Lab Exercises 7.1 Exploring Inheritance Lab Exercises 7.2 A Sorted Integer List

Table of Contents Date(s) Title/Topic Page #s 3/18 7.4 Polymorphism 98-99 no summary no vertical line for notes 7.4 Polymorphism no summary no vertical line 99 http://youtu.be/swezcbm7n-q

Polymorphism A reference can be polymorphic, which can be defined as "having many forms" obj.doit(); This line of code might execute different methods at different times if the object that obj points to changes Polymorphic references are resolved at run time; this is called dynamic binding Careful use of polymorphic references can lead to elegant, robust software designs Polymorphism can be accomplished using inheritance or using interfaces References and Inheritance An object reference can refer to an object of its class, or to an object of any class related to it by inheritance For example, if the Holiday class is used to derive a child class called Christmas, then a Holiday reference could be used to point to a Christmas object Holiday day; day = new Christmas();

References and Inheritance Assigning a predecessor object to an ancestor reference is considered to be a widening conversion, and can be performed by simple assignment Assigning an ancestor object to a predecessor reference can be done also, but it is considered to be a narrowing conversion and must be done with a cast The widening conversion is the most useful An Object reference can be used to refer to any object Polymorphism via Inheritance It is the type of the object being referenced, not the reference type, that determines which method is invoked Suppose the Holiday class has a method called celebrate, and the Christmas class overrides it Now consider the following invocation: day.celebrate(); If day refers to a Holiday object, it invokes the Holiday version of celebrate; if it refers to a Christmas object, it invokes the Christmas version

Polymorphism via Inheritance Consider the following class hierarchy: Polymorphism via Inheritance Now consider the task of paying all employees See Firm.java (Google Classroom) See Staff.java (Google Classroom) See StaffMember.java (Google Classroom) See Volunteer.java (Google Classroom) See Employee.java (Google Classroom) See Executive.java (Google Classroom) See Hourly.java (Google Classroom)

Polymorphism via Interfaces An interface name can be used as the type of an object reference variable Doable obj; The obj reference can be used to point to any object of any class that implements the Doable interface The version of dothis that the following line invokes depends on the type of object that obj is referencing obj.dothis(); Designing for Polymorphism During the design phase, opportunities for polymorphic solutions should be identified Use polymorphism when different types of objects perform the same type of behavior Identifying polymorphic opportunities comes easier with experience

Lab Exercises 7.3 Digging into Inheritance Classes One, Two, Three, Four

Swapping Elements in an Array // swaps n[3] and n[4] int[] n = {...}; int temp = n[3]; n[3] = n[4]; n[4] = temp; No notebook notes today go to Google Classroom and get the files I shared with you your next programming assignment uses some of the strategies we will discuss today

Ben Addiel Jacob Justin Will Kyree Patrick Austin Jordan Cole Bryan Parker Shannon Tyrell Ryan Andrew Part Grade approaching 1 70% 2 80% meets 3 90% exceeds 4 100% public void addcd (String title, String artist, double cost, int tracks) { } if (count == collection.length) increasesize(); collection[count] = new CD (title, artist, cost, tracks); totalcost += cost; count++;

Table of Contents Date(s) Title/Topic Page #s 1/26 6.3 Searching and Sorting 90 Set up p. 90 for Cornell notes 6.3 Searching and Sorting no summary section 90 Table of Contents Date(s) Title/Topic Page #s 1/29 6.4 2D Arrays 91 Set up p. 91 for Cornell notes 6.4 2D Arrays no summary section 91

Go to codingbat.com Sign in Click on Java Array-1 Magic Squares One interesting application of two-dimensional arrays is magic squares. A magic square is a square matrix in which the sum of every row, every column, and both diagonals is the same. Magic squares have been studied for many years, and there are some particularly famous magic squares. In this exercise you will write code to determine whether a square is magic.