type abstraction

27
Type Abstraction SWE 619 - Spring 2006

Upload: mala

Post on 23-Feb-2016

27 views

Category:

Documents


0 download

DESCRIPTION

Type Abstraction. SWE 619 - Spring 2006. Substitution Principle. “In any client code, if supertype object is substituted by subtype object, the client will not notice any difference in behavior” Object o = getNewObject(); Case 1: public Object getNewObject(); - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Type Abstraction

Type Abstraction

SWE 619 - Spring 2006

Page 2: Type Abstraction

Kaushik, Ammann 2005 2October 05

Substitution Principle“In any client code, if supertype object is substituted by subtype object, the client will not notice any difference in behavior”

Object o = getNewObject(); Case 1: public Object getNewObject(); Case 2: public String getNewObject();

Page 3: Type Abstraction

Kaushik, Ammann 2005 3October 05

Why do we subtype? Multiple implementations Extended Behavior Multiple implementations

SparsePoly, DensePoly Different implementations Same specifications All supertype behavior must be

supported No extra stuff!

Page 4: Type Abstraction

Kaushik, Ammann 2005 4October 05

Extended behavior Extended Behavior

Specialize the behavior of supertype Classic ‘IS A’ relationship Usually has additional rep.

VehicleCar Bike

Constraint View: for contracts

CAR

Object View: for rep

Vehicle

Page 5: Type Abstraction

Kaushik, Ammann 2005 5October 05

Conflict in two goals?Poly

SparsePoly LogPolyDensePoly

Poly

SparsePoly

LogPoly

DensePoly

LogPoly: Extends the behavior of Polyby keeping track of how many times it was accessed by the calling code. It has additional rep (a log of accesses)

Page 6: Type Abstraction

Kaushik, Ammann 2005 6October 05

DispatchingObject[] x = new Object[2];X[0] = new String(“abc”);X[1] = new Integer(1);for(int i=0; i<x.length;i++)

System.out.println(x[i].toString());

Compiler does not complain (apparent type is fine!)

Which toString method is called? Object.toString(), String.toString() or Integer.toString()?

At run time, “best fit” code is called.

Page 7: Type Abstraction

Kaushik, Ammann 2005 7October 05

MaxIntSet Example (Fig 7.5)public class MaxIntSet extends IntSet {

private int biggest; // biggest element of set if not empty

public MaxIntSet {super (); } //Why call super() ???

public void insert (int x) {if (size() == 0 || x > biggest) biggest = x;super.insert(x); }

public int max () throws EmptyException {if (size() == 0) throw new EmptyException

(“MaxIS.max”);return biggest; }

Page 8: Type Abstraction

Kaushik, Ammann 2005 8October 05

MaxIntSet.remove()public void remove (int x) {

super.remove(x);if (size()==0 || x <biggest) return;Iterator g = elements();biggest = ((Integer) g.next()).intValue();while (g.hasNext() {

int z = ((Integer) g.next()).intValue();if (z>biggest) biggest = z;

} Need to call supertype’s remove functionality. (private

rep!) Must maintain subtype’s rep invariant

Page 9: Type Abstraction

Kaushik, Ammann 2005 9October 05

MaxIntSet.repOk()public boolean repOk() {

if (!super.repOk()) return false;if (size() == 0) return true;boolean found = false;Iterator g = elements();while(g.hasNext()) {

int z = ((Integer)g.next()).intValue();if (z>biggest) return false;if (z==biggest) found = true;

return found;}

Page 10: Type Abstraction

Kaushik, Ammann 2005 10October 05

MaxIntSet Abstract State// Overview: MaxIntSet is a subtype of IntSet with an additional// method, max, to determine the maximum element of the set

Two possible abstract states: {x1, x2, ... xN} - same as IntSet <biggest, {x1, x2, ... xN}> - visible abstract state

Which one to choose? Design decision - either is possible Second may seem more natural, but there are

significant advantages to the first. (We will cover this via Bloch later in the semester.)

Page 11: Type Abstraction

Kaushik, Ammann 2005 11October 05

repOk() and Dynamic Dispatchingpublic class IntSet { public void insert(int x) {...; repOk();} public void remove(int x) {...; repOk();} // where to? public boolean repOk() {...}}public class MaxIntSet extends IntSet { public void insert(int x) {...; super.insert(x); repOk();} public void remove(int x) {super.remove(x); ...; repOk(); public boolean repOk() {super.repOk(); ...;}}MaxIntSet s = {3, 5}; s.remove(5); // repOk()????

Page 12: Type Abstraction

Kaushik, Ammann 2005 12October 05

Mechanisms: Abstract class Defines a type + partial

implementation Contains both abstract methods and

concrete methods May have instance variables +

constructor Users can’t call constructor Subtype extends the supertype

Can call constructors to initialize supertype rep.

Template pattern

Page 13: Type Abstraction

Kaushik, Ammann 2005 13October 05

Mechanisms: Interface Defines a type (no

implementation) Only non static public method All methods are abstract Implementation is provided by a class

that implements the interface

public class foo implements someInterface {…}

Page 14: Type Abstraction

Kaushik, Ammann 2005 14October 05

Meaning of subtypes Subtypes behavior must support

supertype behavior – (SP) In particular following three

properties:1. Signature Rule2. Methods Rule3. Properties Rule

Page 15: Type Abstraction

Kaushik, Ammann 2005 15October 05

Signature Rule Subtypes must have all methods of

supertype Signatures of methods must be

compatible with supertype signature Return types must be same

Guaranteed by Java compiler Caution: Overriding vs. overloading

public boolean equals(Foo foo) {...}public boolean equals(Object foo) {...}

Exceptions: Can subtype throw more? Fewer Methods rule must be satisfied

Page 16: Type Abstraction

Kaushik, Ammann 2005 16October 05

Methods Rule When object belongs to subtype,

subtype method is called Can we still reason about these

methods using supertype specs?Suppose SortedIntSet extends IntSetIntSet x = new IntSet();IntSet y = new SortedIntSet();x.insert(3); //What is this_post?y.insert(3); //What is this_post?

Page 17: Type Abstraction

Kaushik, Ammann 2005 17October 05

Methods Rule1. Cannot take away methods!

1. Subtype API should atleast be equal or greater than supertype API

2. Must maintain the contract!1. Precondition rule: What can a

subclass do with preconditions in supertype spec?

2. Post condition rule: What can a subclass do with postconditions in supertype spec?

Page 18: Type Abstraction

Kaushik, Ammann 2005 18October 05

Precondition rule Subtype is allowed to weaken the

precondition! Formally:

pre_super |- pre_sub Super //Requires: x > 5 Case 1: Sub //Requires x > 6 Case 2: Sub // Requires x > 4 x>5 x>4? Which is weaker? x>5 x>6? Not checked by compiler

Page 19: Type Abstraction

Kaushik, Ammann 2005 19October 05

Post condition rule Subtype is allowed to strengthen the

post condition Formally:

pre_super && post_sub |- post_super Super: // Effects: returns y < 5 Sub: //Effects: returns y < 4 Sub: //Effects: returns y < 6 Which one is a stronger condition?

Page 20: Type Abstraction

Kaushik, Ammann 2005 20October 05

Other examples Superpublic void addZero()//R: this is not empty//E: add zero to this

public void addZero() throws EE

//R: this is not empty//E: add zero to this

Subpublic void addZero()//E: add zero to this

public void addZero() throws EE

//R: true//E: if this is empty, throw

EE else add zero to this

Page 21: Type Abstraction

Kaushik, Ammann 2005 21October 05

More examples Superpublic void addZero()//R: this is not empty//E: add zero to this

public void addZero() throws EE

//E: if this is empty, throws EE

// else add zero to this

Subpublic void addZero()

throws EE//E: add zero to this

public void addZero()//R: true//E: add zero to this

Page 22: Type Abstraction

Kaushik, Ammann 2005 22October 05

Client codeprivate void foo {

…try{

o.addZero();} (catch EE){

//do something: Client expects to get here!}

}

Page 23: Type Abstraction

Kaushik, Ammann 2005 23October 05

Methods rule vs. Properties rule Methods rule is for single method

invocation Properties rule about abstract

objects. Invariants: E.g. IntSets do not contain

duplicates s.isIn(x) following s.remove(x) always

false Evolution properties: E.g.

MonotoneSets only grow (no remove method allowed).

Page 24: Type Abstraction

Kaushik, Ammann 2005 24October 05

Liskov 7.8, 7.9, 7.10public class Counter{ // Liskov 7.8

public Counter() //EFF: Makes this contain 0public int get() //EFF: Returns the value of thispublic void incr() //MOD: this //EFF: Increments value of this

}public class Counter2 extends Counter { // Liskov 7.9

public Counter2() //EFF: Makes this contain 0public void incr() // MOD: this //EFF: double this

}public class Counter3 extends Counter { // Liskov 7.10

public Counter3(int n) //EFF: Makes this contain npublic void incr(int n) // MOD: this //EFF: if n>0 add n to this

}

Page 25: Type Abstraction

Kaushik, Ammann 2005 25October 05

Anaylsis Signature rule: Careful with over- load vs.

ride Counter2 ok? Counter3 ok?

Methods rule: Precondition rule:

Counter 2 ok? Counter 3 ok?

Postcondition rule: Counter 2 ok? Counter 3 ok?

Page 26: Type Abstraction

Kaushik, Ammann 2005 26

What is a bag? Set – each element may occur only

once Bag – elements may be present

more than once Sequence – is a bag in which the

elements are ordered OrderedSet – is a set in which the

elements are orderedOctober 05

Page 27: Type Abstraction

Kaushik, Ammann 2005 27October 05

Liskov 7.11 Is IntBag a legitimate subtype of IntSet? Analysis:

public void insert(int x); // Effects: ???

public void remove(int x); // Effects: ???