Skip to content

Commit 66ffb9b

Browse files
authored
udpate 设计模式说明
1 parent 3b5dae7 commit 66ffb9b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

设计模式/README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -112,31 +112,31 @@
112112
- 多态
113113

114114
#### 创建型模式
115-
- [工厂方法模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E5%B7%A5%E5%8E%82%E6%A8%A1%E5%BC%8F/factory_method.py)
116-
- [抽象工厂模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E5%B7%A5%E5%8E%82%E6%A8%A1%E5%BC%8F/abstract_factory.py)
117-
- [建造者模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E5%BB%BA%E9%80%A0%E8%80%85%E6%A8%A1%E5%BC%8F/builder.py)
115+
- [工厂方法模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E5%B7%A5%E5%8E%82%E6%A8%A1%E5%BC%8F/factory_method.py)
116+
- [抽象工厂模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E5%B7%A5%E5%8E%82%E6%A8%A1%E5%BC%8F/abstract_factory.py)
117+
- [建造者模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E5%BB%BA%E9%80%A0%E8%80%85%E6%A8%A1%E5%BC%8F/builder.py)
118118
- 原型模式
119-
- [单例模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E5%8D%95%E4%BE%8B%E6%A8%A1%E5%BC%8F/singleton.py)
119+
- [单例模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E5%8D%95%E4%BE%8B%E6%A8%A1%E5%BC%8F/singleton.py)
120120

121121

122122
#### 结构型模式
123-
- [适配器模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E9%80%82%E9%85%8D%E5%99%A8%E6%A8%A1%E5%BC%8F/adapter.py)
124-
- [桥模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E6%A1%A5%E6%A8%A1%E5%BC%8F/bridge.py)
125-
- [组合模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E7%BB%84%E5%90%88%E6%A8%A1%E5%BC%8F/combination.py)
123+
- [适配器模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E9%80%82%E9%85%8D%E5%99%A8%E6%A8%A1%E5%BC%8F/adapter.py)
124+
- [桥模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E6%A1%A5%E6%A8%A1%E5%BC%8F/bridge.py)
125+
- [组合模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E7%BB%84%E5%90%88%E6%A8%A1%E5%BC%8F/combination.py)
126126
- 装饰模式
127-
- [外观模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E5%A4%96%E8%A7%82%E6%A8%A1%E5%BC%8F/facade.py)
127+
- [外观模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E5%A4%96%E8%A7%82%E6%A8%A1%E5%BC%8F/facade.py)
128128
- 享元模式
129-
- [代理模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E4%BB%A3%E7%90%86%E6%A8%A1%E5%BC%8F/proxy.py)
129+
- [代理模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E4%BB%A3%E7%90%86%E6%A8%A1%E5%BC%8F/proxy.py)
130130

131131
#### 行为型模式
132132
- 解释器模式
133-
- [责任链模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E8%B4%A3%E4%BB%BB%E9%93%BE%E6%A8%A1%E5%BC%8F/chain_responsibility.py)
133+
- [责任链模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E8%B4%A3%E4%BB%BB%E9%93%BE%E6%A8%A1%E5%BC%8F/chain_responsibility.py)
134134
- 命令模式
135135
- 迭代器模式
136136
- 中介者模式
137137
- 备忘录模式
138-
- [观察者模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E8%A7%82%E5%AF%9F%E8%80%85%E6%A8%A1%E5%BC%8F/observer_pattern.py)
138+
- [观察者模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E8%A7%82%E5%AF%9F%E8%80%85%E6%A8%A1%E5%BC%8F/observer_pattern.py)
139139
- 状态模式
140-
- [策略模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E7%AD%96%E7%95%A5%E6%A8%A1%E5%BC%8F/strategy.py)
140+
- [策略模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E7%AD%96%E7%95%A5%E6%A8%A1%E5%BC%8F/strategy.py)
141141
- 访问者模式
142-
- [模板方法模式](https://github.com/scliang-strive/MyPractiseNotes/blob/master/design_patterns/%E6%A8%A1%E6%9D%BF%E6%96%B9%E6%B3%95%E6%A8%A1%E5%BC%8F/template_method.py)
142+
- [模板方法模式](https://github.com/scliang-strive/study-note/blob/master/设计模式/%E6%A8%A1%E6%9D%BF%E6%96%B9%E6%B3%95%E6%A8%A1%E5%BC%8F/template_method.py)

0 commit comments

Comments
 (0)