class 09 slides polymorphism preconditions table of
play

Class 09 Slides: Polymorphism Preconditions Table of Contents - PowerPoint PPT Presentation

Class 09 Slides: Polymorphism Preconditions Table of Contents Students are familiar with 1 Review Inheritance and Overriding (20 min) inheritance and arrays. 2 A Polymorphic Example: Dancing Robots (30 m Students have worked with a 2.1


  1. Class 09 Slides: Polymorphism Preconditions Table of Contents • Students are familiar with 1 Review Inheritance and Overriding (20 min) inheritance and arrays. 2 A Polymorphic Example: Dancing Robots (30 m • Students have worked with a 2.1 LeftDancers and RightDancers 2.2 Polymorphic Variables poorly written program in 2.3 Using an Array A08 that could benefit from 2.4 Using Methods Unique to a Subclass polymorphism. 3 Designing with Inheritance (30 min) • Students have read Chapter 3.1 A Poor Design 12 of the text. 3.2 Using Polymorphism 3.2.1 Changes to Withdraw in Bank class 3.2.2 Changes to findAccount in Bank class 3.2.3 Changes to add a new kind of Account Postconditions 4 Summary • Students have seen polymorphism at work and have seen the results of not using it. CS 1 3 3 Class 09 Slides: Polymorphism Slide 1

  2. import becker.robots.*; Overriding Move /** A robot which “dances" towards the left. @author Byron Weber Becker*/ public class LeftDancer extends RobotSE { public LeftDancer(City c, int ave, int str, int dir) { super(c, ave, str, dir); } public void move() { this.turnLeft(); super.move(); this.turnRight(); super.move(); this.turnRight(); super.move(); this.turnLeft(); } public void pirouette() { this.turnLeft(4); } } Class 09 Slides: Polymorphism Slide 2

  3. Ex1: Program Design Robot Show inheritance with: +void move( ) +void turnLeft( ) Show composition (uses) with: RobotSE +void turnRight( ) +void turnRight(int numTimes) +void turnLeft(int numTimes) +void move(int howFar) Example1 LeftDancer RightDancer +void main(...) +void move( ) +void move( ) +void pirouette( ) +void pirouette( ) Class 09 Slides: Polymorphism Slide 3

  4. import becker.robots.*; import becker.robots.*; LeftDancers and RightDancers /** A robot which "dances" towards the left. /** A robot which "dances" towards the right. @author Byron Weber Becker*/ @author Byron Weber Becker*/ public class LeftDancer public class RightDancer extends RobotSE extends RobotSE { //constructor omitted for brevity { //constructor omitted for brevity public void move() public void move() { this.turnLeft(); { this.turnRight(); super.move(); super.move(); this.turnRight(); this.turnLeft(); super.move(); super.move(); this.turnRight(); this.turnLeft(); super.move(); super.move(); this.turnLeft(); this.turnRight(); } } public void pirouette() public void pirouette() { this.turnLeft(4); { this.turnRight(4); } } } } Class 09 Slides: Polymorphism Slide 4

  5. import becker.robots.*; Ex1: Dancing Robots public class Example1 extends Object { public static void main(String[ ] args) { City danceFloor = new City(); LeftDancer ld = new LeftDancer( danceFloor, 1, 4, Directions.NORTH ); RightDancer rd = new RightDancer( danceFloor, 2, 4, Directions.NORTH ); CityFrame f = new CityFrame(danceFloor, 4, 5); for (int i=0; i< 4; i++) { ld.move(); rd.move(); } ld.pirouette(); rd.pirouette(); } } Class 09 Slides: Polymorphism Slide 5

  6. import becker.robots.*; Ex. 2: Polymorphic Variables public class Example2 extends Object { public static void main(String[ ] args) { City danceFloor = new City(); Robot ld = new LeftDancer( danceFloor, 1, 4, Directions.NORTH ); Robot rd = new RightDancer( danceFloor, 2, 4, Directions.NORTH ) ; CityFrame f = new CityFrame(danceFloor, 4, 5); for (int i=0; i< 4; i++) { ld.move(); rd.move(); } ld.pirouette(); rd.pirouette(); } } Class 09 Slides: Polymorphism Slide 6

  7. public class Example3 extends Object Ex. 3: Using an Array { public static void main(String args[ ]) { City danceFloor = new City(); Robot[ ] chorusLine = new Robot[4]; for(int i=0; i<chorusLine.length; i++) { if (i%3 == 0) chorusLine[i] = new LeftDancer( danceFloor, 1+i, 4, Directions.NORTH ); else if (i%3 == 1) chorusLine[i] = new RightDancer( danceFloor, 1+i, 4, Directions.NORTH ); else chorusLine[i] = new Robot( danceFloor, 1+i, 4, Directions.NORTH ); } for(int i=0; i<4; i++) { for(int j=0; j<chorusLine.length; j++) { chorusLine[j].move(); } } } } Class 09 Slides: Polymorphism Slide 7

  8. // Identical to Example 3 up to here. Ex. 4: Methods Unique to a Subclass // Make them dance for (int i=0; i<4; i++) { for(int j=0; i< chorusLine.length; i++) { chorusLine[j].move(); } } // End with a pirouette (if able) for(int i=0; i<chorusLine.length; i++) { } } } Class 09 Slides: Polymorphism Slide 8

  9. * Accounts: A Poor Design MinBalAccount UI +double balance -Bank bank +boolean balBelow -TextInput in +int acctNum +UI(Bank aBank) +MinBalAccount(...) +void eventLoop( ) +void deposit(double amt) +void withdraw(double amt) +void transfer(double amt, Bank MinBalAccount toAccount) -MinBalAccount[ ] mbAccts +void transfer(double amt, -PerUseAccount[ ] puAccts PerUseAccountt toAccount) ... +Bank( ) PerUseAccount -MinBalAccount findMinBalAccount( * +double balance int acctNum) +int numWithdraws -PerUseAccount findPerUseAccount( +int acctNum int acctNum) +void deposit(int acctNum, double amt) +PerUseAccount(...) +void withdraw(int acctNum, double amt) +void deposit(double amt) -void addTrans(int acctNum, double amt, +void withdraw(double amt) double balance) +void transfer(double amt, ... MinBalAccount toAccount) +void transfer(double amt, PerUseAccount toAccount) Class 09 Slides: Polymorphism Slide 9

  10. public class Bank extends Object Accounts: Code From A Poor Design { private MinBalAccount[ ] mbAccts; private PerUseAccount[ ] puAccts; … public void deposit(int acctNum, double amt) { // Look for this account in the list of min balance accounts. If there, do the deposit. MinBalAccount mba = this.findMinBalAccount(acctNum); if (mba != null) { mba.deposit(amt); this.addTrans(acctNum, amt, mba.balance); } else { /* Wasn’t in the min balance accounts list. Look in the per-use accounts list. If there, do the deposit. */ PerUseAccount pua = this.findPerUseAccount(acctNum); if (pua != null) { pua.deposit(amt); this.addTrans(acctNum, amt, pua.balance); } else { System.out.println( "Account " + acctNum + " not found." ); } } } Class 09 Slides: Polymorphism Slide 10

  11. * A Design Using Polymorphism Account UI -double balance -int accountNum -Bank bank -TextInput in +Account(...) +void deposit(double amt) +UI( ) +void eventLoop( ) +void withdraw(double amt) +void transfer(double amt, Account toAcct) +void chargeServiceFee( ) Bank +double getBalance( ) -Account[ ] accts +int getAccountNum( ) -int numAccts +Bank(String accountFileName) +void deposit(int acctNum, double amt) +void withdraw(int acctNum, double amt) MinBalAccount PerUseAccount -Account findAccount(int acctNum) -void addTrans(int acctNum, double amt, -boolean balBelow -int numWithdraws double balance) +MinBalAccount(...) +PerUseAccount(...) +void withdraw(...) +void withdraw(...) +void chargeServ... +void chargeServ... Class 09 Slides: Polymorphism Slide 11

  12. public class Bank extends Object Code Using Polymorphism { private Account[ ] accts; private int numAccts; … public void withdraw(int acctNum, double amt) { Class 09 Slides: Polymorphism Slide 12

  13. public class Bank extends Object More Code Using Polymorphism { private Account[ ] accts; private int numAccts; … private Account findAccount(int acctNum) { int i = 0; while (true) { if (i >= this.numAccts) { return null; } else if (this.accts[i].getAccountNum() == acctNum) { return this.accts[i]; } else { i++; } } } … } Class 09 Slides: Polymorphism Slide 13

  14. Adding MthFeeAcct What changes are needed in Bank to add a monthly fee account? UI * Account -Bank bank -TextInput in -double balance -int accountNum +UI( ) +void eventLoop( ) +Account(...) +void deposit(double amt) +void withdraw(double amt) Bank +void transfer(double amt, Account toAcct) -Account[ ] accts +void chargeServiceFee( ) -int numAccts +double getBalance( ) +Bank(String accountFileName) +int getAccountNum( ) +void deposit(int acctNum, d... amt) +void withdraw(int acctN..., d... amt) -Account findAccount(int acctNum) MinBalAccount MthFeeAccount PerUseAccount -boolean balBelow -int numWithdraws +MinBalAccount(...) +MthFeeAccount(...) +PerUseAccount(...) +void withdraw(...) +void chargeServi... +void withdraw(...) +void chargeServi... +void chargeServi... Class 09 Slides: Polymorphism Slide 14

  15. Summary Polymorphism… • is when objects respond to the same message (method name) in different ways, depending on their type. • is implemented by extending a class with two or more subclasses. The methods in the superclass may be overridden by subclasses to respond differently. • can substantially simplify programs, making them easier to read, write, understand, test, debug, and change. Class 09 Slides: Polymorphism Slide 15

  16. Class 09 Slides: Polymorphism Slide 16

Recommend


More recommend