国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發(fā)設計 > 正文

策略模式

2019-11-08 02:01:58
字體:
供稿:網(wǎng)友
<?php// 策略模式interface Calculator{	public function calc($a, $b);}/** * add strategy */class AddCalculator implements Calculator{	public function calc($a, $b)	{		return intval($a) + intval($b);	}}/** * multiply stategy */class MultiplyCalculator implements Calculator{	public function calc($a, $b)	{		return intval($a) * intval($b);	}}// -------------------------------------------------------/** * sample code */class StrategySample{	PRivate $calc;	public function __construct(Calculator $c = NULL)	{		if(!is_null($c))			$this->calc = $c;	}	/**	 * set calculator	 */	public function setCalculator(Calculator $c)	{		$this->calc = $c;	}	/**	 * get calculator	 */	public function getCalculator()	{		return $this->calc;	}	public function doCalc($a, $b)	{		return $this->calc->calc($a, $b);	}}// test code$add = new AddCalculator();$strategy = new StrategySample($add);echo $strategy->doCalc(2, 3);echo '<br>';$strategy->setCalculator(new MultiplyCalculator());echo $strategy->doCalc(2, 3);
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 龙州县| 淮滨县| 新营市| 康保县| 信宜市| 宁晋县| 民县| 乐平市| 建平县| 凤翔县| 建宁县| 南充市| 新河县| 蒙城县| 永川市| 叶城县| 玉屏| 屏南县| 称多县| 仙游县| 新竹市| 河津市| 景谷| 西林县| 宁远县| 苍南县| 鄯善县| 甘洛县| 保山市| 宁蒗| 浙江省| 康平县| 达孜县| 武胜县| 名山县| 汕头市| 庄浪县| 师宗县| 天全县| 绍兴市| 盐城市|