strategy php設計模式 Strategy策略模式

WBOY
發布: 2016-07-29 08:45:45
原創
856 人瀏覽過

複製程式碼 程式碼如下:


/**
* 策略模式(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)
{
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
// 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()); // 改變快取策略?> 以上就介紹了strategy php設計模式 Strategy策略模式,包括了strategy方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板