首页 > Web开发 > 详细

PHP设计模式——策略模式

时间:2016-02-23 18:45:06      阅读:232      评论:0      收藏:0      [点我收藏+]
<?php
/**
 * 策略模式
 * 策略模式帮助构建的对象不必自身包含逻辑,而是能够根据需要利用其他对象中的算法
 * 
 * 在能够创建基于对象的,由自包含算法组成的可互换对象时,最佳的做法是使用策略模式 
 */
interface Math{
    function calc($op1,$op2);
}

class Add implements Math{
    public function calc($op1,$op2) {
        return $op1 + $op2;
    }
}

class Sub implements Math{
    public function calc($op1,$op2) {
        return $op1 - $op2;
    }
}

//策略类
class CMath{
    protected $_calc = NULL;
    public function __construct($type) {
        $this->_calc = new $type;
    }
    public function calc($op1,$op2) {
        return $this->_calc->calc($op1,$op2);
    }
}

//使用
$type  = ‘Add‘;
$calc = new CMath($type);
$result = $calc->calc(1, 100);
echo ‘1 + 100 = ‘.$result.‘<br>‘;

//使用
$type  = ‘Sub‘;
$calc = new CMath($type);
$result = $calc->calc(1, 100);
echo ‘1 - 100 = ‘.$result;

 

PHP设计模式——策略模式

原文:http://www.cnblogs.com/tlxma/p/5210704.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!