码迷,mamicode.com
首页 > Web开发 > 详细

PHP设计模式——策略模式

时间:2016-02-23 18:47:25      阅读:169      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!