{教程}PHP设计模式之命令模式

图片[1]-{教程}PHP设计模式之命令模式-月宅酱的博客


 0;
}
}
/**
* Class ConcreteCommandTwo 具体命令2
*/
class ConcreteCommandTwo implements Command
{
/**
* 实现验证方法
*
* @param $value
*
* @return bool
*/
public function isValid($value)
{
// 能被2整除的数字
return $value % 2 == 0;
}
}
/**
* Class Invoker 调用者
*/
class Invoker
{
protected $_rule;
/**
* 构造方法
* 接收具体命令对象
* Invoker constructor.
*
* @param Command $rule
*/
public function __construct (Command $rule)
{
$this->_rule = $rule;
}
public function process(array $numbers)
{
foreach ($numbers as $n) {
if ($this->_rule->IsValid($n)) {
echo $n, "\n";
}
}
}
}
/**
* Class Client 客户端
*/
class Client {
/**
* 测试
*/
public static function test()
{
$invoker = new Invoker(new ConcreteCommand());
$invoker->process(array(-1,-4,-8,1, 10, 15, 20, 36, 48, 59,111));
echo '
'; $invoker = new Invoker(new ConcreteCommandTwo()); $invoker->process(array(-1,-4,-8,1, 10, 15, 20, 36, 48, 59,111)); } } // 执行测试 Client::test();

 

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容