基本信息
源码名称:Cpp-Design-Patterns设计模式
源码大小:0.19M
文件格式:.zip
开发语言:C/C++
更新时间:2023-10-17
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
Cpp-Design-Patterns设计模式

.
├── Cpp-Design-Patterns
│   ├── Abstract Factory
│   │   ├── EmployeeDAO1.cpp
│   │   ├── EmployeeDAO2.cpp
│   │   ├── EmployeeDAO3.cpp
│   │   └── README.md
│   ├── Adapter
│   │   ├── Adapter.cpp
│   │   └── README.md
│   ├── Bridge
│   │   ├── README.md
│   │   ├── bridge1.cpp
│   │   └── bridge2.cpp
│   ├── Builder
│   │   ├── README.md
│   │   └── builder.cpp
│   ├── Chain of Resposibility
│   │   ├── ChainofResposibility.cpp
│   │   └── README.md
│   ├── Command
│   │   ├── Command.cpp
│   │   └── README.md
│   ├── Command-Pattern
│   │   ├── Command.hpp
│   │   ├── GarageDoorOpen.hpp
│   │   ├── LightOnCommand.hpp
│   │   ├── Makefile
│   │   ├── README.md
│   │   ├── SimpleRemoteControl.hpp
│   │   └── main.cpp
│   ├── Composite
│   │   ├── README.md
│   │   └── composite.cpp
│   ├── Decorator
│   │   ├── README.md
│   │   ├── decorator1.cpp
│   │   ├── decorator2.cpp
│   │   └── decorator3.cpp
│   ├── Decorator-Pattern
│   │   ├── Beverage.hpp
│   │   ├── CondimentDecorator.hpp
│   │   ├── Espresso.hpp
│   │   ├── HouseBlend.hpp
│   │   ├── Makefile
│   │   ├── Mocha.hpp
│   │   ├── README.md
│   │   └── main.cpp
│   ├── Facade
│   │   └── README.md
│   ├── Factory Method
│   │   ├── FileSplitter1.cpp
│   │   ├── FileSplitter2.cpp
│   │   ├── ISplitterFactory.cpp
│   │   ├── MainForm1.cpp
│   │   ├── MainForm2.cpp
│   │   └── README.md
│   ├── Factory-Pattern
│   │   ├── ChicagoPizzaStore.hpp
│   │   ├── ChicagoStyleCheesePizza.hpp
│   │   ├── ChicagoStylePepperoniPizza.hpp
│   │   ├── Makefile
│   │   ├── NYPizzaStore.hpp
│   │   ├── NYStyleCheesePizza.hpp
│   │   ├── NYStylePepperoniPizza.hpp
│   │   ├── Pizza.hpp
│   │   ├── PizzaStore.hpp
│   │   ├── README.md
│   │   └── main.cpp
│   ├── Flyweight
│   │   ├── README.md
│   │   └── flyweight.cpp
│   ├── Interpreter
│   │   ├── README.md
│   │   └── main.cpp
│   ├── Iterator
│   │   ├── Iterator.cpp
│   │   └── README.md
│   ├── Mediator
│   │   └── README.md
│   ├── Memento
│   │   ├── README.md
│   │   └── memento.cpp
│   ├── Observer
│   │   ├── FileSplitter1.cpp
│   │   ├── FileSplitter2.cpp
│   │   ├── MainForm1.cpp
│   │   ├── MainForm2.cpp
│   │   └── README.md
│   ├── Observer-Pattern
│   │   ├── CurrentConditionsDisplay.hpp
│   │   ├── DisplayElement.hpp
│   │   ├── Makefile
│   │   ├── Observer.hpp
│   │   ├── README.md
│   │   ├── Subject.hpp
│   │   ├── WeatherData.hpp
│   │   └── main.cpp
│   ├── Prototype
│   │   ├── Client.cpp
│   │   ├── ConcretePrototype.cpp
│   │   ├── Prototype.cpp
│   │   └── README.md
│   ├── Proxy
│   │   ├── README.md
│   │   ├── client.cpp
│   │   └── proxy.cpp
│   ├── README.md
│   ├── Singleton
│   │   ├── README.md
│   │   └── Singleton.cpp
│   ├── State
│   │   ├── README.md
│   │   ├── state1.cpp
│   │   └── state2.cpp
│   ├── Strategy
│   │   ├── README.md
│   │   ├── strategy1.cpp
│   │   └── strategy2.cpp
│   ├── Strategy-Pattern
│   │   ├── DecoyDuck.cpp
│   │   ├── DecoyDuck.hpp
│   │   ├── Duck.hpp
│   │   ├── FlyBehavior.hpp
│   │   ├── FlyNoWay.hpp
│   │   ├── FlyWithWings.hpp
│   │   ├── Makefile
│   │   ├── MallardDuck.cpp
│   │   ├── MallardDuck.hpp
│   │   ├── MuteQuack.hpp
│   │   ├── Quack.hpp
│   │   ├── QuackBehavior.hpp
│   │   ├── README.md
│   │   ├── RedHeadDuck.cpp
│   │   ├── RedHeadDuck.hpp
│   │   ├── RubberDuck.cpp
│   │   ├── RubberDuck.hpp
│   │   ├── Squeak.hpp
│   │   └── main.cpp
│   ├── Template Method
│   │   ├── Makefile
│   │   ├── README.md
│   │   ├── template1_app.cpp
│   │   ├── template1_lib.cpp
│   │   ├── template2_app.cpp
│   │   └── template2_lib.cpp
│   ├── Template-Pattern
│   │   ├── CaffeineBeverage.hpp
│   │   ├── Coffee.hpp
│   │   ├── Makefile
│   │   ├── README.md
│   │   ├── Tea.hpp
│   │   └── main.cpp
│   └── Visitor
│       ├── README.md
│       ├── Visitor1.cpp
│       └── Visitor2.cpp
└── Cpp-Design-Patterns设计模式_Cpp-Design-Patterns.zip

30 directories, 127 files