Skip to content

设计模式-python, python design pattern,基于菜鸟教程的设计模式java实现进行了python重写

Notifications You must be signed in to change notification settings

cf-zhang/design_pattern_python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

design_pattern_python

设计模式-python, python design pattern,基于菜鸟教程的设计模式java实现进行了python重写

写在前面

菜鸟教程 中对常用的设计模式进行了汇总,实现上使用的是java。在本仓库里面对所有的教程涉及到的代码用python进行了重写,同样也有C++版本的实现在另一个仓库进行了管理 C++ 设计模式

设计模式之间的关系

创建型模式

这些设计模式提供了一种在创建对象的同时隐藏创建逻辑的方式,而不是使用 new 运算符直接实例化对象。这使得程序在判断针对某个给定实例需要创建哪些对象时更加灵活。

factory_pattern.py

factory_pattern

abstract_factory_pattern.py

abstract_factory_pattern

singleton_pattern.py

singleton_pattern

build_pattern.py

build_pattern

prototype_pattern.py

prototype pattern

结构型模式

这些设计模式关注类和对象的组合。继承的概念被用来组合接口和定义组合对象获得新功能的方式。

adapter_pattern.py

adapter

bridge_pattern.py

bridge pattern

filter_pattern.py

filter pattern

composite_pattern.py

composite pattern

decorator_pattern.py

decorator pattern

facade_pattern.py

facade pattern

flyweight_pattern.py

flyweight pattern

proxy_pattern.py

proxy pattern

行为型模式

这些设计模式特别关注对象之间的通信。

chain_of_responsibility_pattern.py

chain of responsibility pattern

command_pattern.py

command pattern

interpreter_pattern.py

interpreter pattern

iterator_patter.py

iterator_pattern

iterator_pattern.py

mediator_pattern.py

mediator pattern

memento_pattern.py

observer_pattern.py

state_pattern.py

null_object_pattern.py

strategy_pattern.py

template_pattern.py

visitor_pattern.py

J2EE 模式

这些设计模式特别关注表示层。这些模式是由 Sun Java Center 鉴定的。

mvc_pattern.py

business_delegate_pattern.py

composite_entity_pattern.py

data_access_object_pattern.py

front_controller_pattern.py

intercepting_filter_pattern.py

service_locator_pattern.py

transfer_object_pattern.py

About

设计模式-python, python design pattern,基于菜鸟教程的设计模式java实现进行了python重写

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages