PHP版23种设计模式简单的实现

PHP版23种设计模式简单的实现和说明。

github:https://github.com/ZhangZhenBin/DesignPattern-PHP

PHP版23种设计模式简单的实现

总结面向对象实际上就两句话:一是松耦合(Coupling),二是高内聚(Cohesion)。 面向对象系统追求的目标就是尽可能地提高系统模块内部的内聚(Cohesion)、尽可能降低模 块间的耦合(Coupling)。

1、简单工厂

\create\SimpleFactory

1.1、工厂方法

\create\FactoryMethod

2、抽象工厂

\create\AbstractFactory

3、单例模式

\create\Singleton

4、建造者模式

\create\Builder

5、克隆模式

\create\Prototype

6、桥接模式

\structure\Bridge

7、适配器模式

\structure\AdapterClass

8、装饰模式

\structure\Decorator

9、组合模式

\structure\Composite

10、享元模式

\structure\Flyweight

11、外观模式

\structure\Facade

12、代理模式

\structure\Proxy

13、模版模式

\behavior\Template

14、策略模式

\behavior\Strategy

15、状态模式

\behavior\State

16、观察者模式

\behavior\Observer

17、备忘录模式

\behavior\Memento

18、中介模式

\behavior\Mediator

19、命令模式

\behavior\Command

20、访问者模式

\behavior\Visitor

21、责任链模式

$\behavior\ChainOfResponsibility

22、迭代器模式

\behavior\Iterator

23、解析器模式

\behavior\Interpreter

    原文作者:圳于琊
    原文地址: https://blog.csdn.net/u014068781/article/details/79468166
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞