在先前的文章《深入淺析PHP中的指令模式》中我們介紹了PHP中的指令模式,以下這篇文章帶大家了解一下PHP中的策略模式。
策略模式,又稱為政策模式,屬於行為型的設計模式。
GoF定義:定義一連串的演算法,把它們一個個封裝起來,並且使它們可以互相替換。本模式使得演算法可獨立於使用它的客戶而變化 。
GoF類別圖
#程式碼實作
interface Strategy{ function AlgorithmInterface(); } class ConcreteStrategyA implements Strategy{ function AlgorithmInterface(){ echo "算法A"; } } class ConcreteStrategyB implements Strategy{ function AlgorithmInterface(){ echo "算法B"; } } class ConcreteStrategyC implements Strategy{ function AlgorithmInterface(){ echo "算法C"; } }
定義演算法抽象及實作。
class Context{ private $strategy; function __construct(Strategy $s){ $this->strategy = $s; } function ContextInterface(){ $this->strategy->AlgorithmInterface(); } }
定義執行環境上下文。
$strategyA = new ConcreteStrategyA(); $context = new Context($strategyA); $context->ContextInterface(); $strategyB = new ConcreteStrategyB(); $context = new Context($strategyB); $context->ContextInterface(); $strategyC = new ConcreteStrategyC(); $context = new Context($strategyC); $context->ContextInterface();
最後,在客戶端按需呼叫適當的演算法。
既然和簡單工廠如此的相像,那我們也用簡單工廠的方式來說:我們是一個手機廠商(Client),想找某工廠(ConcreteStrategy)來做一批手機,透過渠道商(Context)向這個工廠下單製造手機,渠道商直接去聯絡代工廠(Strategy),並且直接將生產完成的手機運送給我(ContextInterface())。同樣的,我不用關心他們的具體實現,我只要監督那個和我們聯繫的渠道商就可以啦,是不是很省心!
完整程式碼:https://github.com/zhangyue0503/designpatterns-php/blob/master/10.strategy/source/strategy.php
依然還是簡訊功能,具體的需求可以參考簡單工廠模式中的講解,但是這回我們使用策略模式來實現!
簡訊發送類別圖
#完整原始碼:https://github.com/zhangyue0503/designpatterns-php /blob/master/10.strategy/source/strategy-message.php
<?php interface Message { public function send(); } class BaiduYunMessage implements Message { function send() { echo '百度云发送信息!'; } } class AliYunMessage implements Message { public function send() { echo '阿里云发送信息!'; } } class JiguangMessage implements Message { public function send() { echo '极光发送信息!'; } } class MessageContext { private $message; public function __construct(Message $msg) { $this->message = $msg; } public function SendMessage() { $this->message->send(); } } $bdMsg = new BaiduYunMessage(); $msgCtx = new MessageContext($bdMsg); $msgCtx->SendMessage(); $alMsg = new AliYunMessage(); $msgCtx = new MessageContext($alMsg); $msgCtx->SendMessage(); $jgMsg = new JiguangMessage(); $msgCtx = new MessageContext($jgMsg); $msgCtx->SendMessage();
說明
原文網址:https://juejin.cn/post/6844903955860996110
作者:硬核心專案經理
#推薦學習:《PHP影片教學》
以上是一起聊聊PHP中的策略模式的詳細內容。更多資訊請關注PHP中文網其他相關文章!