From b86d8c88e89137d4ad3114207508cae22eae209b Mon Sep 17 00:00:00 2001 From: Edward Date: Tue, 5 May 2020 00:02:06 +0800 Subject: [PATCH] update README.md --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 21af83b..327302f 100644 --- a/README.md +++ b/README.md @@ -21,15 +21,15 @@ + [x] [中介者模式(Mediator)](./behavior/01_mediator) + [x] [闭包选项模式(Function Option)](./behavior/02_option) + [x] [观察者模式(Observer)](./behavior/03_observer) -+ [ ] [命令模式(Command)](./behavior/11_command) ++ [ ] [WIP][命令模式(Command)](./behavior/11_command) + [x] [迭代器模式(Iterator)](./behavior/04_iterator) + [x] [模板方法模式(Template Method)](./behavior/05_template_method) + [x] [策略模式(Strategy)](./behavior/12_strategy) -+ [ ] [状态模式(State)](./behavior/behavior16_state) -+ [ ] [备忘录模式(Memento)](./behavior/17_memento) ++ [ ] [WIP][状态模式(State)](./behavior/behavior16_state) ++ [ ] [WIP][备忘录模式(Memento)](./behavior/09_memento) + [x] [访问者模式(Visitor)](./behavior/07_visitor) -+ [ ] [解释器模式(Interpreter)](./behavior/08_interpreter) -+ [x] [职责链模式(Chain of Responsibility)](./behavior/05_chain_of_responsibility) ++ [ ] [WIP][解释器模式(Interpreter)](./behavior/08_interpreter) ++ [x] [职责链模式(Chain of Responsibility)](./behavior/06_chain_of_responsibility) ## 创建型模式 @@ -38,7 +38,7 @@ + [x] [简单工厂模式(Simple Factory)](./creation/02_simple_factory) + [x] [创建者模式(Builder)](./creation/03_builder) + [x] [单例模式(Singleton)](./creation/06_singleton) -+ [ ] [对象池模式(Object Pool)](./creation/04_object_pool) ++ [ ] [WIP][对象池模式(Object Pool)](./creation/04_object_pool) + [x] [工厂方法模式(Factory Method)](./creation/05_factory_method) + [x] [抽象工厂模式(Abstract Factory)](./creation/08_abstract_factory) + [x] [原型模式(Prototype)](./creation/07_prototype) @@ -59,15 +59,15 @@ + [x] [发布订阅模式(Pub-Sub)](./gomore/01_messages) + [x] [时差模式(Time Profile)](./gomore/02_profiles) + [x] [上下文模式(Context)](./gomore/03_context) -+ [ ] [淡入模式(Fan-In)](./gomore/04_fan_in) -+ [ ] [淡出模式(Fan-Out)](./gomore/05_fan_out) -+ [ ] [熔断模式(circuit breaker)](./gomore/06_circuit_breaker) -+ [ ] [限流模式(rate limiting))](./gomore/07_rate_limiting) -+ [ ] [信号量模式(Semaphore)](./gomore/08_semaphore) -+ [ ] [并行模式(Parallelism)](./gomore/09_parallelism) -+ [ ] [生成器模式(Generators)](./gomore/10_generators) -+ [ ] [屏障模式(N-Barrier)](./gomore/11_n_barrier) -+ [ ] [有限并行模式(Bounded Parallelism)](./gomore/12_bounded_parallelism) ++ [ ] [WIP][淡入模式(Fan-In)](./gomore/04_fan_in) ++ [ ] [WIP][淡出模式(Fan-Out)](./gomore/05_fan_out) ++ [ ] [WIP][熔断模式(circuit breaker)](./gomore/06_circuit_breaker) ++ [ ] [WIP][限流模式(rate limiting))](./gomore/07_rate_limiting) ++ [ ] [WIP][信号量模式(Semaphore)](./gomore/08_semaphore) ++ [ ] [WIP][并行模式(Parallelism)](./gomore/09_parallelism) ++ [ ] [WIP][生成器模式(Generators)](./gomore/10_generators) ++ [ ] [WIP][屏障模式(N-Barrier)](./gomore/11_n_barrier) ++ [ ] [WIP][有限并行模式(Bounded Parallelism)](./gomore/12_bounded_parallelism) ## 参考资料(Design patters Articles)