首頁  >  文章  >  後端開發  >  PHP策略模式的程式碼分享

PHP策略模式的程式碼分享

黄舟
黄舟原創
2017-03-16 09:25:481217瀏覽

PHP策略模式的程式碼分享

<?php  
// 策略模式  
  
interface Calculator  
{  
    public function calc($a, $b);  
}  
  
/** 
 * add strategy 
 */  
class AddCalculator implements Calculator  
{  
    public function calc($a, $b)  
    {  
        return intval($a) + intval($b);  
    }  
}  
  
/** 
 * multiply stategy 
 */  
class MultiplyCalculator implements Calculator  
{  
    public function calc($a, $b)  
    {  
        return intval($a) * intval($b);  
    }  
}  
  
// -------------------------------------------------------  
  
/** 
 * sample code 
 */  
class StrategySample  
{  
    private $calc;  
  
    public function construct(Calculator $c = NULL)  
    {  
        if(!is_null($c))  
            $this->calc = $c;  
    }  
  
    /** 
     * set calculator 
     */  
    public function setCalculator(Calculator $c)  
    {  
        $this->calc = $c;  
    }  
  
    /** 
     * get calculator 
     */  
    public function getCalculator()  
    {  
        return $this->calc;  
    }  
  
    public function doCalc($a, $b)  
    {  
        return $this->calc->calc($a, $b);  
    }  
}  
  
// test code  
$add = new AddCalculator();  
$strategy = new StrategySample($add);  
echo $strategy->doCalc(2, 3);  
  
echo &#39;<br>&#39;;  
$strategy->setCalculator(new MultiplyCalculator());  
echo $strategy->doCalc(2, 3);

以上是PHP策略模式的程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn