html5-img
1 / 16

CS 350 – Software Design Template Method Pattern

CS 350 – Software Design Template Method Pattern. Let’s look at two objects public class Coffee { public void prepareRecipe () { boilWater (); brewCoffeeGrinds (); pourInCup (); addSugarAndMilk (); } public void boilWater () { System.out.println (“Boiling water”); }

tatum
Télécharger la présentation

CS 350 – Software Design Template Method Pattern

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS 350 – Software DesignTemplate Method Pattern Let’s look at two objects public class Coffee { public void prepareRecipe() { boilWater(); brewCoffeeGrinds(); pourInCup(); addSugarAndMilk(); } public void boilWater() { System.out.println(“Boiling water”); } public void brewCoffeeGrinds { System.out.println(“Dripping Coffee through filter”); } public void pourInCup() { System.out.println(“Pouring in cup”); } public void addSugarAndMilk() { System.out.println(“adding Sugar and Milk”); } }

  2. CS 350 – Software DesignTemplate Method Pattern Let’s look at two objects public class Tea{ public void prepareRecipe() { boilWater(); steepTeaBag(); pourInCup(); addLemon(); } public void boilWater() { System.out.println(“Boiling water”); } public void steepTea { System.out.println(“Steeping the tea”); } public void pourInCup() { System.out.println(“Pouring in cup”); } public void addLemon() { System.out.println(“adding Lemon”); }

  3. CS 350 – Software DesignTemplate Method Pattern Clearly there is code duplication. Do you think this is a contrived example? Wouldn’t you really say: public void boilWater() { System.out.println(“Boiling water for coffee”); } public void boilWater() { System.out.println(“Boiling water for tea”); } As well as: public void pourInCup() { System.out.println(“Pouring coffee in cup”); public void pourInCup() { System.out.println(“Pouring tea in cup”);

  4. CS 350 – Software DesignTemplate Method Pattern Let’s abstract Coffee and Tea:

  5. CS 350 – Software DesignTemplate Method Pattern Think of it this way: Both recipes follow the same algorithm. Boil some water. Use the hot water to extract the coffee or tea. Pour the resulting beverage into a cup. Add the appropriate condiments to the beverage.

  6. CS 350 – Software DesignTemplate Method Pattern Compare the two prepareRecipe() methods. These can be rewritten as: void prepareRecipe() { boilWater(); brew(); pourInCup(); addCondiments(); } Is this better?

  7. CS 350 – Software DesignTemplate Method Pattern If we implement the new prepare recipe, we now have: public abstract class CaffeineBeverage { final void prepareRecipe() { boilWater(); brew(); pourInCup(); addCondiments(); } abstract void brew(); abstract void addCondiments(); void boilWater() { System.out.println(“Boiling water”); } void pourInCup() { System.our.println(“Pouring in cup”); }

  8. CS 350 – Software DesignTemplate Method Pattern public class Tea extends CaffeineBeverage { public void brew() { System.out.println(“Steeping the tea”); } public void addCondiments() { System.out.println(“Adding Lemon”); } public class Coffee extends CaffeineBeverage { public void brew() { System.out.println(“Dripping Coffee through filter”); } public void addCondiments() { System.out.println(“Adding Sugar and Milk”); }

  9. CS 350 – Software DesignTemplate Method Pattern The Template method defines the steps of an algorithm and allows subclasses to provide the implementation for one or more steps.

  10. CS 350 – Software DesignTemplate Method Pattern Template Method Up Close abstract class AbstractClass { final void templateMethod() { primitiveOperation1(); primitiveOperation2(); concreteOpertation(); } abstract void primitiveOperation1(); abstract void primitiveOperation2(); void concreteOperation(); { //implementaiton here } }

  11. CS 350 – Software DesignTemplate Method Pattern Template Method Up Closer abstract class AbstractClass { final void templateMethod() { primitiveOperation1(); primitiveOperation2(); concreteOpertation(); hook(); } abstract void primitiveOperation1(); abstract void primitiveOperation2(); void concreteOperation(); { //implementaiton here } } The hook method does nothing, but provides an interface so that subclasses may override them, although this is not required.

  12. CS 350 – Software DesignTemplate Method Pattern Using the Hook public class CoffeeWithHook extends CaffeineBeverageWithHook { public void brew() { System.out.println(“Dripping Coffee through filter”); } public void addCondiments() { System.out.println(“Adding Sugar and Milk”); } public booleancustomerWantsCondiments() { String answer = getUserInput(); if ( answer.toLowerCase().startsWith(“y”)) { return true; else return false; } }

  13. CS 350 – Software DesignTemplate Method Pattern Using the Hook private String GetUserInput() { String answer = null; System.out.print(“Would you like milk and sugar with your coffee (y/n?”); BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); try { answer = in.readLine(); } catch (IOExceptionioe) { System.err.println(“IO error trying to read your answer”); } if (answer = null) { return “no”; } return answer; }

  14. CS 350 – Software DesignTemplate Method Pattern Sorting with the Template Method public static void sort(Object[] a) { Object aux[] = (Object[])a.clone(); mergeSort(aux, a, 0, a.length, 0); } private static void mergeSort (Object src[], Object dest[], int low, int high, int off) { for (inti=low; i < high; i++) { for (int j=i; j>low && ((Comparable)dest[j-1]).compareTo((Comparable)dest[j])>0; j--) {swap(dest, j, j-1); } } return; ;

  15. CS 350 – Software DesignTemplate Method Pattern Sorting with the Template Method public class Duck implements Comparable { String name; int weight; public Duck(String name, int weight) { this.name = name; this.weight = weight; } public String toString() { return name + “weighs “ + weight; } public intcompareTo(Object object) { Duck otherDuck = (Duck)object; if (this.weight < otherDuck.weight) { return -1; } else if (this.weight > otherDuck.weight) { return 1; } else { return She is a witch, may we burn her? } } }

  16. CS 350 – Software DesignTemplate Method Pattern Sorting with the Template Method public class DuckSortTestDrive { public static void main (String[] args) { Duck[] ducks = { new Duck(“Daffy”, 8), new Duck(“Dewey”, 2), new Duck(“Howard”, 7)}; System.outprintln(“Before sorting:”); display(ducks); Arrays.sort(ducks); System.out.println(“\nAfter sorting:”); display(ducks); } public static void display(duck[] ducks) { for (inti = 0; i < ducks.length; i++) { System.out.println(ducks[i]); } } }

More Related