嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C 设计模式大总结
包括C 的常用设计模式,大总结与常见使用测试,一个VS工程,方便学习、复习和修改增加
.
├── C 设计模式大总结_DesignPatterns.rar
├── Common.h
├── DesignPatterns.sln
├── DesignPatterns.suo
├── DesignPatterns.vcproj
├── DesignPatterns.vcproj.xs-PC.Administrator.user
├── include
│ ├── AbstractFactory.h
│ ├── Adapter.h
│ ├── Bridge.h
│ ├── Builder.h
│ ├── ChainOfResponsibility.h
│ ├── Command.h
│ ├── Composite.h
│ ├── Decorator.h
│ ├── Facade.h
│ ├── Factory.h
│ ├── FactoryMethod.h
│ ├── Flyweight.h
│ ├── Interpreter.h
│ ├── Iterator.h
│ ├── Mediator.h
│ ├── Memento.h
│ ├── Observer.h
│ ├── Prototype.h
│ ├── Proxy.h
│ ├── Singleton.h
│ ├── State.h
│ ├── Strategy.h
│ ├── TemplateMethod.h
│ └── Visitor.h
├── main.cpp
└── src
├── AbstractFactory.cpp
├── Adapter.cpp
├── Bridge.cpp
├── Builder.cpp
├── ChainOfResponsibility.cpp
├── Command.cpp
├── Composite.cpp
├── Decorator.cpp
├── Facade.cpp
├── Factory.cpp
├── FactoryMethod.cpp
├── Flyweight.cpp
├── Interpreter.cpp
├── Iterator.cpp
├── Mediator.cpp
├── Memento.cpp
├── Observer.cpp
├── Prototype.cpp
├── Proxy.cpp
├── Singleton.cpp
├── State.cpp
├── Strategy.cpp
├── TemplateMethod.cpp
└── Visitor.cpp
2 directories, 55 files