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

PHP设计模式-策略模式Strategy

标签:
PHP

1.策略模式概念
策略模式针对一组算法,将每一个算法封装到具有共同接口的独立的类中,此模式让算法的变化独立于使用算法的客户。从而让程序结构更灵活,具有更好的扩展性和维护性
2.策略模式结构图

3.策略模式角色说明
    抽象策略(Strategy)角色:定义所有支持的算法的公共接口。通常是以一个接口或抽象来实现。Context使用这个接口来调用其ConcreteStrategy定义的算法。
    具体策略(ConcreteStrategy)角色:以Strategy接口实现某具体算法
    环境(Context)角色:持有一个Strategy类的引用,用一个ConcreteStrategy对象来配置
4.策略模式实例 

<?php

/**

 * 抽象策略角色,以接口实现

 */

interface Strategy {  

  /**

   * 算法接口

   */

  public function algorithmInterface();

}  

/**

 * 具体策略角色A

 */

class ConcreteStrategyA implements Strategy {

   

  public function algorithmInterface() {

    echo 'algorithmInterface A<br />';

  }

}  

/**

 * 具体策略角色B

 */

class ConcreteStrategyB implements Strategy {

   

  public function algorithmInterface() {

    echo 'algorithmInterface B<br />';

  }

}  

/**

 * 具体策略角色C

 */

class ConcreteStrategyC implements Strategy {

   

  public function algorithmInterface() {

    echo 'algorithmInterface C<br />';

  }

}

   

/**

 * 环境角色

 */

class Context {

  /* 引用的策略 */

  private $_strategy;

   

  public function __construct(Strategy $strategy) {

    $this->_strategy = $strategy;

  }

   

  public function contextInterface() {

    $this->_strategy->algorithmInterface();

  }

   

}  

/**

 * 客户端

 */

class Client {

   

  /**

   * Main program.

   */

  public static function main() {

    $strategyA = new ConcreteStrategyA();

    $context = new Context($strategyA);

    $context->contextInterface();

   

    $strategyB = new ConcreteStrategyB();

    $context = new Context($strategyB);

    $context->contextInterface();

   

    $strategyC = new ConcreteStrategyC();

    $context = new Context($strategyC);

    $context->contextInterface();

  }

   

}  

Client::main();

?>



点击查看更多内容
TA 点赞

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

评论

作者其他优质文章

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

100积分直接送

付费专栏免费学

大额优惠券免费领

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

举报

0/150
提交
取消