当前位置: 网学 > 编程文档 > PHP > 正文

php设计模式 Strategy(策略模式)

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/22

【编者按】网学网PHP频道为大家收集整理了“php设计模式 Strategy(策略模式)“提供大家参考,希望对大家有所帮助!

复制代码 代码如下:
<?php
/**
* 策略模式(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<br/>";
}

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<br/>";
// 文件缓存构造函数
}

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<br/>";
// TTServer缓存构造函数
}

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

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

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

// -- 以下是使用不用缓存的策略 ------
class Model
{
private php设计模式 Strategy(策略模式)_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
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()); // 改变缓存策略
?>

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号