charlie garrod michael hilton
play

Charlie Garrod Michael Hilton School of Computer Science 15-214 - PowerPoint PPT Presentation

Principles of Software Construction: Objects, Design, and Concurrency Part 1: Designing Classes Design for Reuse Charlie Garrod Michael Hilton School of Computer Science 15-214 1 Administrivia HW2 due Thursday Sep 14, 11:59 p.m.


  1. Principles of Software Construction: Objects, Design, and Concurrency Part 1: Designing Classes Design for Reuse Charlie Garrod Michael Hilton School of Computer Science 15-214 1

  2. Administrivia • HW2 due Thursday Sep 14, 11:59 p.m. 15-214 2

  3. Readings • Due today: – Item 15: Minimize mutability – Item 39: Make defensive copies when needed • Thursday optional reading due: – Item 16: Favor composition over inheritance – Item 17: Design and document for inheritance or else prohibit it – Item 18: Prefer interfaces to abstract classes • Tuesday required readings due: – Chapter 9. Use-Case Model: Drawing System Sequence Diagrams – Chapter 10. Domain Model: Visualizing Concepts 15-214 3

  4. Today: Class-level reuse with delegation and inheritance • Delegation • Inheritance – Java-specific details for inheritance • Later in the course: – System-level reuse with libraries and frameworks 15-214 4

  5. The promise of reuse: Without reuse Cost With reuse # Products 15-214 5

  6. COMPOSITION AND DELEGATION 15-214 6

  7. Recall our earlier sorting example: Version A: static void sort(int[] list, boolean ascending) { … boolean mustSwap; if (ascending) { mustSwap = list[i] < list[j]; } else { mustSwap = list[i] > list[j]; } … } Version B': interface Comparator { boolean compare(int i, int j); } final Comparator ASCENDING = (i, j) -> i < j; final Comparator DESCENDING = (i, j) -> i > j; static void sort(int[] list, Comparator cmp) { … boolean mustSwap = cmp.compare(list[i], list[j]); … } 15-214 7

  8. Delegation • Delegation is simply when one object relies on another object for some subset of its functionality – e.g. here, the Sorter is delegating functionality to some Comparator • Judicious delegation enables code reuse interface Comparator { boolean compare(int i, int j); } final Comparator ASCENDING = (i, j) -> i < j; final Comparator DESCENDING = (i, j) -> i > j; static void sort(int[] list, Comparator cmp) { … boolean mustSwap = cmp.compare(list[i], list[j]); … } 15-214 8

  9. Delegation • Delegation is simply when one object relies on another object for some subset of its functionality – e.g. here, the Sorter is delegating functionality to some Comparator • Judicious delegation enables code reuse – Sorter can be reused with arbitrary sort orders – Comparator s can be reused with arbitrary client code that needs to compare integers interface Comparator { boolean compare(int i, int j); } final Comparator ASCENDING = (i, j) -> i < j; final Comparator DESCENDING = (i, j) -> i > j; static void sort(int[] list, Comparator cmp) { … boolean mustSwap = cmp.compare(list[i], list[j]); … } 15-214 9

  10. Using delegation to extend functionality • Consider the java.util.List (excerpted): public interface List<E> { public boolean add(E e); public E remove(int index); public void clear(); … } • Suppose we want a list that logs its operations to the console… 15-214 10

  11. Using delegation to extend functionality The LoggingList is composed of a List , and delegates (the non- logging) functionality to that List • One solution: public class LoggingList<E> implements List<E> { private final List<E> list; public LoggingList<E>(List<E> list) { this.list = list; } public boolean add(E e) { System.out.println("Adding " + e); return list.add(e); } public E remove(int index) { System.out.println("Removing at " + index); return list.remove(index); } … 15-214 11

  12. Delegation and design • Small interfaces with clear contracts • Classes to encapsulate algorithms, behaviors – E.g., the Comparator 15-214 12

  13. IMPLEMENTATION INHERITANCE AND ABSTRACT CLASSES 15-214 13

  14. Variation in the real world: types of bank accounts public interface CheckingAccount { public long getBalance(); public void deposit(long amount); public boolean withdraw(long amount); public boolean transfer(long amount, Account??? target); public long getFee(); } public interface SavingsAccount { public long getBalance(); public void deposit(long amount); public boolean withdraw(long amount); public boolean transfer(long amount, Account??? target); public double getInterestRate(); } 15-214 14

  15. Interface inheritance for an account type hierarchy public interface Account { public long getBalance(); public void deposit(long amount); public boolean withdraw(long amount); public boolean transfer(long amount, Account target); public void monthlyAdjustment(); } public interface CheckingAccount extends Account { public long getFee(); } public interface SavingsAccount extends Account { public double getInterestRate(); } public interface InterestCheckingAccount extends CheckingAccount, SavingsAccount { } 15-214 15

  16. The power of object-oriented interfaces • Subtype polymorphism – Different kinds of objects can be treated uniformly by client code – Each object behaves according to its type • e.g., if you add new kind of account, client code does not change: If today is the last day of the month: For each acct in allAccounts: acct.monthlyAdjustment(); 15-214 16

  17. Implementation inheritance for code reuse public abstract class AbstractAccount implements Account { protected long balance = 0; public long getBalance() { return balance; } abstract public void monthlyAdjustment(); // other methods… } public class CheckingAccountImpl extends AbstractAccount implements CheckingAccount { public void monthlyAdjustment() { balance -= getFee(); } public long getFee() { … } } 15-214 17

  18. Implementation inheritance for code reuse an abstract class is missing public abstract class AbstractAccount the implementation of one implements Account { or more methods protected long balance = 0; public long getBalance() { protected elements return balance; } are visible in abstract public void monthlyAdjustment(); subclasses // other methods… } an abstract method is left to be public class CheckingAccountImpl implemented in a extends AbstractAccount implements CheckingAccount { subclass public void monthlyAdjustment() { balance -= getFee(); } public long getFee() { … } } no need to define getBalance() – the code is inherited from AbstractAccount 15-214 18

  19. Inheritance: a glimpse at the hierarchy • Examples from Java – java.lang.Object – Collections library 15-214 19

  20. LinkedList Javadocs 15-214 20

  21. Aside: A glimpse at the hierarchy Interface Excerpt from Java Collections API Class AbstractClass Collection “implements” interfaces AbstractCollection List Set “extends” AbstractSet Vector AbstractList Cloneable AbstractSequentialList ArrayList LinkedList HashSet 15-214 21

  22. Aside: Inheritance and Class Hierarchies • All Java classes are arranged in a hierarchy – Object is the superclass of all Java classes • Inheritance and hierarchical organization capture idea: – One thing is a refinement or extension of another • Benefits of inheritance: – Fundamentally enables reuse – And modeling flexibility • A Java aside: • Each class can directly extend only one parent class • A class can implement multiple interfaces 15-214 22

  23. Inheritance and subtyping • Inheritance is for polymorphism and class A extends B code reuse – Write code once and only once – Superclass features implicitly available in subclass class A implements I • Subtyping is for polymorphism class A extends B – Accessing objects the same way, but getting different behavior – Subtype is substitutable for supertype 15-214 23

  24. Typical roles for interfaces and classes • An interface defines expectations / commitments for clients • A class fulfills the expectations of an interface – An abstract class is a convenient hybrid – A subclass specializes a class's implementation 15-214 24

  25. Java details: extended reuse with super public abstract class AbstractAccount implements Account { protected long balance = 0; public boolean withdraw(long amount) { // withdraws money from account (code not shown) } } public class ExpensiveCheckingAccountImpl extends AbstractAccount implements CheckingAccount { public boolean withdraw(long amount) { balance -= HUGE_ATM_FEE; boolean success = super.withdraw(amount) if (!success) balance += HUGE_ATM_FEE; Overrides withdraw but return success; also uses the superclass withdraw method } } 15-214 25

  26. Java details: constructors with this and super public class CheckingAccountImpl extends AbstractAccount implements CheckingAccount { private long fee; public CheckingAccountImpl( long initialBalance, long fee) { Invokes a constructor of the super (initialBalance); superclass. Must be the this .fee = fee; first statement of the } constructor. public CheckingAccountImpl( long initialBalance) { this (initialBalance, 500); } Invokes another /* other methods… */ } constructor in this same class 15-214 26

  27. Java details: final • A final field: prevents reassignment to the field after initialization • A final method: prevents overriding the method • A final class: prevents extending the class – e.g., public final class CheckingAccountImpl { … 15-214 27

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend