为了账号安全,请及时绑定邮箱和手机立即绑定

PHP设计模式-策略模式

标签:
PHP

策略模式

用途

分离「策略」并使他们之间能互相快速切换。此外,这种模式是一种不错的继承替代方案(替代使用扩展抽象类的方式)。

例子

  • 计算器的设计

代码

  • MathStrategy.php

namespace Strategy;interface MathStrategy{    public function calc(int $num1, int $num2);
}
  • MathAdd.php

namespace Strategy;class MathAdd implements MathStrategy{    public function calc(int $num1, int $num2): int
    {        return $num1 + $num2;
    }
}
  • MathSub.php

namespace Strategy;class MathSub implements MathStrategy{    public function calc(int $num1, int $num2): int
    {        return $num1 - $num2;
    }
}
  • Computer.php

namespace Strategy;class Computer{    public $math_class;    public function __construct(int $type)
    {        if ($type == 1) {            $this->math_class = new MathAdd();
        } elseif ($type == 2) {            $this->math_class = new MathSub();
        }
    }    /**
     * 返回结构
     * @param int $num1
     * @param int $num2
     * @return int
     */
    public function getResult(int $num1, int $num2): int
    {        if ($this->math_class === null) echo '对象为空';        return $this->math_class->calc($num1, $num2);
    }
}
  • 实施调用

<?php// 注册自加载use Strategy\Computer;

spl_autoload_register(function ($class) {    require dirname($_SERVER['SCRIPT_FILENAME']) . '//..//' . str_replace('\\', '/', $class) . '.php';
});

$class = new Computer(1);echo $class->getResult(1,4);echo '<br>';

$class2 = new Computer(2);echo $class2->getResult(2, 6);

总结

  • 工厂模式和策略模式的CML图片是相似的,他们区别在于,工厂模式是我们可以直接拿到对象进行操作;策略模式我们拿到的是对象的封装对象。



作者:PHP的艺术编程
链接:https://www.jianshu.com/p/89a64a92c0bb


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消