>백엔드 개발 >PHP 튜토리얼 >php设计模式 Strategy(策略模式)_php技巧

php设计模式 Strategy(策略模式)_php技巧

WBOY
WBOY원래의
2016-05-17 09:17:50933검색
复制代码 代码如下:

/**
* 策略模式(Strategy.php)
*
* 定义一系列算法,把它们一个个封装起来,并且使它们可相互替换,使用得算法的变化可独立于使用它的客户
*
*/

// ---以下是一系列算法的封闭----
interface CacheTable
{
public function get($key);
public function set($key,$value);
public function del($key);
}

// 不使用缓存
class NoCache implements CacheTable
{
public function __construct(){
echo "Use NoCache
";
}

public function get($key)
{
return false;
}

public function set($key,$value)
{
return true;
}

public function del($key)
{
return false;
}
}

// 文件缓存
class FileCache implements CacheTable
{
public function __construct()
{
echo "Use FileCache
";
// 文件缓存构造函数
}

public function get($key)
{
// 文件缓存的get方法实现
}

public function set($key,$value)
{
// 文件缓存的set方法实现
}

public function del($key)
{
// 文件缓存的del方法实现
}
}

// TTServer
class TTCache implements CacheTable
{
public function __construct()
{
echo "Use TTCache
";
// TTServer缓存构造函数
}

public function get($key)
{
// TTServer缓存的get方法实现
}

public function set($key,$value)
{
// TTServer缓存的set方法实现
}

public function del($key)
{
// TTServer缓存的del方法实现
}
}

// -- 以下是使用不用缓存的策略 ------
class Model
{
private $_cache;
public function __construct()
{
$this->_cache = new NoCache();
}

public function setCache($cache)
{
$this->_cache = $cache;
}
}

class UserModel extends Model
{
}

class PorductModel extends Model
{
public function __construct()
{
$this->_cache = new TTCache();
}
}

// -- 实例一下 ---
$mdlUser = new UserModel();
$mdlProduct = new PorductModel();
$mdlProduct->setCache(new FileCache()); // 改变缓存策略
?>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.