模板方法 Template Method 模板方法,是一種如果這包水泥我有、你也有,就連喬瑟夫都有,那我們就應該把這八百包水泥抽離出來的設計模式,是設計模式中很簡單的模式,在模板(Template)裡頭會定義需要實作的方法,並且由繼承物件去實作或複寫,這個設計模式適用於不同物件有多處相似功能的時候,可以減少物件的耦合性過高問題。
UML
實作 首先我們會需要建立一個抽象的模板,並且提供大頭菜無論健康的、壞掉的都擁有的方法,像是獲得鈴錢價格(getPrice)、獲得數量(getCount)以及計算總計鈴錢價格(calculatePrice),而有些方法需要繼承物件去實作的,例如設定鈴錢價格(setPrice),我們就需要以抽象方法的方式去定義,讓繼承物件必須去實作。
TurnipsTemplate.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 abstract class TurnipsTemplate { protected int $price = 0 ; protected int $count = 0 ; public function __construct (int $price , int $count ) { $this ->setPrice ($price ); $this ->setCount ($count ); } public function getPrice ( ) { return $this ->price; } public function getCount ( ) { return $this ->count; } abstract public function setPrice (int $price ) ; public function setCount (int $count ) { $this ->count = $count ; } public function calculatePrice ( ): int { $price = $this ->price; $count = $this ->count; return $price * $count ; } }
再來我們開始建立物件去繼承模板,首先健康的大頭菜,在設定鈴錢價格時,就直接根據設定的鈴錢金額去如實設定。
Turnips.php
1 2 3 4 5 6 7 8 9 10 11 12 13 class Turnips extends TurnipsTemplate { public function setPrice (int $price ) { $this ->price = $price ; } }
而壞掉的大頭菜部分,則是無論設定的鈴錢金額是多少,都要直接給予 0 鈴錢,因為壞掉的大頭菜不值任何鈴錢。
Spoiled.php
1 2 3 4 5 6 7 8 9 10 11 12 13 class Spoiled extends TurnipsTemplate { public function setPrice (int $price ) { $this ->price = 0 ; } }
測試 最終我們要測試大頭菜的模板所建構出來的大頭菜物件是否可以正常運作,我們會有兩個測試,分別是測試健康的大頭菜物件(Turnips)以及壞掉的大頭菜物件(Spoiled)。
TemplateMethodTest.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 class TemplateMethodTest extends TestCase { public function test_turnips_template ( ) { $turnips = new Turnips (100 , 40 ); $this ->assertEquals (100 , $turnips ->getPrice ()); $this ->assertEquals (40 , $turnips ->getCount ()); $this ->assertEquals (4000 , $turnips ->calculatePrice ()); } public function test_spoiled_template ( ) { $turnips = new Spoiled (100 , 40 ); $this ->assertEquals (0 , $turnips ->getPrice ()); $this ->assertEquals (40 , $turnips ->getCount ()); $this ->assertEquals (0 , $turnips ->calculatePrice ()); } }
最後測試的執行結果會獲得如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 PHPUnit Pretty Result Printer 0.28.0 by Codedungeon and contributors. ==> Configuration: ~/php-design-pattern/vendor/codedungeon/phpunit-result-printer/src/phpunit-printer.yml PHPUnit 9.2.6 by Sebastian Bergmann and contributors. ==> ...fResponsibilitiesTest ✔ ✔ ✔ ==> CommandPatternTest ✔ ==> IteratorPatternTest ✔ ✔ ✔ ✔ ==> MediatorPatternTest ✔ ✔ ✔ ==> MementoPatternTest ✔ ==> NullObjectPatternTest ✔ ✔ ✔ ✔ ==> ObserverPatternTest ✔ ==> SpecificationPatternTest ✔ ✔ ✔ ✔ ==> StatePatternTest ✔ ==> StrategyPatternTest ✔ ==> TemplateMethodTest ✔ ✔ ==> AbstractFactoryTest ✔ ✔ ✔ ✔ ==> BuilderPatternTest ✔ ✔ ✔ ✔ ==> FactoryMethodTest ✔ ✔ ✔ ✔ ==> PoolPatternTest ✔ ✔ ==> PrototypePatternTest ✔ ✔ ==> SimpleFactoryTest ✔ ✔ ✔ ✔ ==> SingletonPatternTest ✔ ==> StaticFactoryTest ✔ ✔ ✔ ✔ ✔ ==> AdapterPatternTest ✔ ✔ ==> BridgePatternTest ✔ ✔ ✔ ==> CompositePatternTest ✔ ✔ ✔ ==> DataMapperTest ✔ ✔ ==> DecoratorPatternTest ✔ ✔ ==> DependencyInjectionTest ✔ ✔ ✔ ==> FacadePatternTest ✔ ==> FluentInterfaceTest ✔ ==> FlyweightPatternTest ✔ ==> ProxyPatternTest ✔ ✔ ==> RegistryPatternTest ✔ ✔ ✔ ✔ ✔ Time: 00:00.052, Memory: 8.00 MB OK (76 tests, 153 assertions)
完整程式碼 設計模式不難,找回快樂而已,以大頭菜為例。
參考文獻