Informatik II Tutorial 6. Subho Shankar Basu

Similar documents
Informatik II. Tutorial 6. Mihai Bâce Mihai Bâce. April 5,

Informatik II (D-ITET) Tutorial 6

Informatik II (D-ITET) Tutorial 6. TA: Anwar Hithnawi, Distributed Systems Group, ETH Zürich

Informatik II Tutorial 7. Subho Shankar Basu

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

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

Object-Oriented Programming (Java)

Chapter 11 Inheritance and Polymorphism. Motivations. Suppose you will define classes to model circles,

What is Inheritance?

Week 5-1: ADT Design

Java Object Oriented Design. CSC207 Fall 2014

CS260 Intro to Java & Android 03.Java Language Basics

Subclass Gist Example: Chess Super Keyword Shadowing Overriding Why? L10 - Polymorphism and Abstract Classes The Four Principles of Object Oriented

Lecture 3. COMP1006/1406 (the Java course) Summer M. Jason Hinek Carleton University

Inheritance and Polymorphism

Super-Classes and sub-classes

CS-202 Introduction to Object Oriented Programming

CS 112 Programming 2. Lecture 06. Inheritance & Polymorphism (1) Chapter 11 Inheritance and Polymorphism

Software and Programming 1

Distributed Systems Recitation 1. Tamim Jabban

Java Inheritance. Written by John Bell for CS 342, Spring Based on chapter 6 of Learning Java by Niemeyer & Leuck, and other sources.

CMSC131. Inheritance. Object. When we talked about Object, I mentioned that all Java classes are "built" on top of that.

Java: introduction to object-oriented features

type conversion polymorphism (intro only) Class class

Inheritance and Polymorphism. CS180 Fall 2007

Practice for Chapter 11

Day 3. COMP 1006/1406A Summer M. Jason Hinek Carleton University

AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS

Object Oriented Programming: In this course we began an introduction to programming from an object-oriented approach.

CIS 110: Introduction to computer programming

Create a Java project named week10

CS 251 Intermediate Programming Inheritance

Lecture 10. Overriding & Casting About

COMPUTER SCIENCE DEPARTMENT PICNIC. Operations. Push the power button and hold. Once the light begins blinking, enter the room code

Inheritance. Transitivity

Java Fundamentals (II)

25. Generic Programming

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

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

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

Chapter 5 Object-Oriented Programming

CS32 - Week 4. Umut Oztok. Jul 15, Umut Oztok CS32 - Week 4

Java Classes, Inheritance, and Interfaces

Programming Language Concepts Object-Oriented Programming. Janyl Jumadinova 28 February, 2017

Day 4. COMP1006/1406 Summer M. Jason Hinek Carleton University

Lesson 10. Work with Interfaces and Abstract Classes. Copyright all rights reserved

Introduction to Inheritance

Rules and syntax for inheritance. The boring stuff

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

Introduction to Programming Using Java (98-388)

CREATED BY: Muhammad Bilal Arslan Ahmad Shaad. JAVA Chapter No 5. Instructor: Muhammad Naveed

Distributed Systems Recitation 1. Tamim Jabban

The software crisis. code reuse: The practice of writing program code once and using it in many contexts.

Name Return type Argument list. Then the new method is said to override the old one. So, what is the objective of subclass?

Relationships Between Real Things. CSE 143 Java. Common Relationship Patterns. Composition: "has a" CSE143 Sp Student.

COE318 Lecture Notes Week 8 (Oct 24, 2011)

Big software. code reuse: The practice of writing program code once and using it in many contexts.

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

CS/ENGRD 2110 SPRING Lecture 7: Interfaces and Abstract Classes

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

Implements vs. Extends When Defining a Class

Lecture Notes Chapter #9_b Inheritance & Polymorphism

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

Java Magistère BFA

Principles of Object Oriented Programming. Lecture 4

More about inheritance

Inheritance and Polymorphism

OVERRIDING. 7/11/2015 Budditha Hettige 82

ITI Introduction to Computing II

CS100J, Fall 2003 Preparing for Prelim 1: Monday, 29 Sept., 7:30 9:00PM

1 Epic Test Review 2 Epic Test Review 3 Epic Test Review 4. Epic Test Review 5 Epic Test Review 6 Epic Test Review 7 Epic Test Review 8

CISC370: Inheritance

CMSC 132: Object-Oriented Programming II

COP 3330 Final Exam Review

Object Oriented Programming. Java-Lecture 11 Polymorphism

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

Topic 7: Inheritance. Reading: JBD Sections CMPS 12A Winter 2009 UCSC

Exam Duration: 2hrs and 30min Software Design

Lesson 10B Class Design. By John B. Owen All rights reserved 2011, revised 2014

Example: Count of Points

Pieter van den Hombergh Thijs Dorssers Stefan Sobek. February 10, 2017

Weiss Chapter 1 terminology (parenthesized numbers are page numbers)

CLASS DESIGN. Objectives MODULE 4

More On inheritance. What you can do in subclass regarding methods:

C08: Inheritance and Polymorphism

First IS-A Relationship: Inheritance

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

Announcement. Agenda 7/31/2008. Polymorphism, Dynamic Binding and Interface. The class will continue on Tuesday, 12 th August

Classes and Inheritance Extending Classes, Chapter 5.2

ITI Introduction to Computing II

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

Programming II (CS300)

1 Shyam sir JAVA Notes

OBJECT ORİENTATİON ENCAPSULATİON

Inheritance, Polymorphism, and Interfaces

JAVA MOCK TEST JAVA MOCK TEST II

AP CS Unit 6: Inheritance Notes

CH. 2 OBJECT-ORIENTED PROGRAMMING

Operators and Expressions

Inheritance (Outsource: )

Transcription:

Informatik II Tutorial 6 Subho Shankar Basu subho.basu@inf.ethz.ch 06.04.2017

Overview Debriefing Exercise 5 Briefing Exercise 6 2

U05 Some Hints Variables & Methods beginwithlowercase, areverydescriptiveand uppercaseseparated amethodwhichhasaverylongname() Classes with capital letters: class MyClass{ } 3

Object Oriented Programming 4

Class Person Person Name Age Address PhoneNumber tostring getname getage getaddress getphonenumber setaddress(newaddress) setphonenumber(newphonenumber) Attributes Accessors Mutators Getter and Setter Methods Informatik II - Übung Tutorial 066 5

How do we implement class Person? public class Person { private String m_name; private int m_age; private String m_address; private String m_phone; public Person(String name, int age, String address, String phone) { m_name = name; m_age = age; m_address = address; m_phone = phone; } public String tostring() { return getname() + " is " + getage() + "old and lives in " + getaddress(); } public String getname() { return m_name; } public int getage() { return m_age; } public String getaddress() { return m_address; } public String getphonenumber() { return m_phone; }... 6

What about students? Student Name Age Address PhoneNumber Legi tostring() getname() getage() getaddress() getphonenumber() getlegi() setaddress(newaddress) setphonenumber(newphonenumber) Person Name Age Address PhoneNumber tostring() getname() getage() getaddress() getphonenumber() setaddress(newaddress) setphonenumber(newphonenumber) 7

Student class Student defines a constructor calls the basis class constructor through the usage of super public class Student extends Person { private String m_legi; public Student(String name, int age, String address, String phone, String legi){ super(name, age, address, phone); m_legi = legi; } public String tostring() { return getname() + " is " + getage() + "old, lives in " + getaddress() + " and has legi-nr.: " + getlegi(); } } public String getlegi() { return m_legi; } 8

Inheritance Student extends Person Student can: Add new fields: m_legi Add new methods: getlegi() Override existing methods: tostring() Student cannot: Remove fields Remove methods 9

Why inheritance? Better design Code reuse Code «maintenance» Abstraction of the real world 10

Inheritance 11

Upcasting Cat c = new Cat(); System.out.println(c); Mammal m = c; // upcasting System.out.println(m); /* This printed: Cat@a90653 Cat@a90653 */ Cat is still exactly the same Cat after upcasting, it didn't change to a Mammal, it's just being labeled Mammal right now. This is allowed, because Cat is a Mammal. Upcasting is done automatically, no need to do it manually 12

13

Downcasting Cat c1 = new Cat(); Animal a = c1; //automatic upcasting to Animal Cat c2 = (Cat) a; //manual downcasting back to a Cat Downcasting must be done manually! Why? Multiple child classes 14

Downcasting 15

Static & Dynamic Casting Person Student Employee Person p = new Person(...); Student s = new Student(...); Employee e = new Employee(...); Person ps = s Person pe = e Student sp = p Student sps = ps Student dsps = (Student) ps Employee deps = (Employee) ps ok ok Compile error Compile error Ok (casting from base class to derived class) Runtime error (ps points to object of class Student) 16

Static & Dynamic Casting Person Student Employee Person p = new Person(...); Student s = new Student(...); Employee e = new Employee(...); p instanceof Person p instanceof Student s instanceof Person s instanceof Student True False True True 17

Object class in Java Is a superclass for all other classes defined in Java's class libraries, as well as for user-defined Java classes. This does not include primitive types (char, int, float, etc.): they are not classes! When a class is defined in Java, the inheritance from the Object class is implicit, therefore: public class MyClass {... } is equivalent to: public class MyClass extends Object {... } 18

Object class in Java Object Person Student Employee Quelle: sun.com 19

Visibility rules private members Private members in the base class are not accessible to the derived class, and also not to anyone else protected members Protected members are visible to methods in a derived class and also methods in classes in the same package, but not to anyone outside public members Everyone 20

Final methods and classes A derived class Can accept the base class methods Or can override the base class methods A method declared as final in the base class cannot be overridden by any derived class A final class cannot be extended! E.g. Integer, Character,... 21

Abstract classes Abstract method Is a method that all derived classes must implement Abstract class A class that has at least one abstract method If a class derived from an abstract class fails to override an abstract method, the compiler will detect an error Eclipse provides help! 22

Interfaces The interface in Java is the ultimate abstract class. A class can implement many interfaces. A class implements an interface if it provides definitions for all the methods declared in the interface. So, both abstract classes and interface provide a specification of what subclasses must do. But... 23

Abstract class vs. interface 24

Abstract class vs. Interface Abstract class An abstract class can provide complete code, default code, and/or just stubs that have to be overridden Interface An interface cannot provide any code, much less default code May declare methods as protected abstract All methods declared are implicitly public abstract A class may extend only one abstract class A class may implement several interfaces http://java.sun.com/docs/books/tutorial/java/iandi/index.html 25

Example interface public interface IStack { int size(); void push(object obj); Object pop(); Object peek(); boolean empty(); } public class MyStack implements IStack { private int size; } public int size() { return size; } public void push(object obj) {... }... 26

Example Abstract class public abstract class BaseStack implements IStack { public abstract int size(); public abstract void push(object obj); public abstract Object pop(); public Object peek() { Object top = pop(); push(top); return top; } public boolean empty() { return size() == 0; } } public class MyStack extends BaseStack { private GenericList first; } public Object peek() { return first.value; }... 27

Overview Debriefing Exercise 5 Briefing Exercise 6 28

U06 Q1: Classes, Interfaces and Casts Q2: Interfaces and their implementation Q3: Polymorphism Q4: ChunkedStack (optional) 29

Hints A keyword represents an interface Notation for the dependance of the instantiation of the interface. Thermal sensor instantiates the isensor interface Keyword Property Section with attributes (detailed representation) Private client as a specialized Person Section with operations (detailed representation http://de.wikipedia.org/wiki/klassendiagramm 30

U06.A02 A factory method builds an object which implements a certain interface, but the inner functionality of the object is hidden. Programmer 1 implements different lists which implement the IList interface. Programmer 2 uses lists but doesn t want to know about the functionality. When Programmer 1 writes a new implementation, Programmer2 has to rewrite all lines of new ListA() as new ListB(). Programmer 1 puts a factory method at disposal and Programmer 2 can always call for example Factory.giveMeNewList() and gets an object from the newest implementation of the IList interface. 31

ScriptS.GE 32

List of integers class List { int value; List next; } public List(int v, List e){ value = v; next = e; } value v next e value v next e 33

Generic List class GenericList { Object value; GenericList next; } public GenericList(Object v, GenericList e){ value = v; next = e; } value v next e value v next e 34

U06.A03 a and c Methods are not static anymore! Ex5.Q1: tostring, add, size Can be easily passed Ex5.Q3: sort Similar (same idea) Minimal interfacing. This way, it can work with generic objects Interface Comparable public interface Comparable { boolean smallerthan(comparable rhs); } You can cast as Comparable without checking its type 35

U06.A04 Stacks again! Optional, so not trivial Self-test: Whoever can do it will have no problem during the exam. Combines the efficiency of arrays to the effortless growth of lists Implement according to the interface Performance analysis 36

Have Fun! Image 37

U06.A04 ArrayList and Generics Each group consists of multiple students: ArrayList<Student> group There are multiple groups of students: ArrayList<ArrayList<Student>> groups; a) Implement factory method b) Implement filterraw (without generics: ArrayList) c) Implement filtergeneric (using Generics: ArrayList<Student>) 38