搜索资源列表
设计模式实验
- 设计模式实验:包括策略模式、观察者模式、装饰者模式、抽象工厂模式、单件模式、命令模式、适配器模式、外观模式,共8个。
设计模式(抽象工厂模式)
- 设计模式(抽象工厂模式)
静态工厂方法模式(Static Factory Method)
- 一.简单工厂模式又称静态工厂方法模式(Static Factory Method),它不是Gof 所讲的23种设计模式之一,但是它却是我们在编码过程中经常使用的方法之一。
StaticFactoryPattern
- java语言中简单工厂模式的例子,包括了rose画的UML图-simple model plant for example, include a rose painted map UML
headfirst.java
- 关于常用的几个设计模式的java实现原代码(包括工厂模式,命令模式,观察者模式,策略模式,个体模式等)-on several commonly used design patterns to achieve the java source code (including factory pattern, order patterns, observer mode, strategy model, individual mode)
MSAutoFactory
- 很多时候,我们使用工厂模式来管理生成的实例。但在本示例中,我们使用类名来自动生成运行时实例--工厂自动化的机制-Very often, we use to manage the factory model generating examples. However, in this example, we used the class to automatically generate runtime example-- factory
ebuy
- 一个基于java工厂模式的 的实现-Java factory pattern based on the realization of
FactoryMessage
- 采用C#,采用分层(MVC)结构、工厂模式开发。模拟留言板-Using C#, Stratified (MVC) structure, the development of the factory model. Simulation Message Board
sigalton_factory
- 在本实例中,实现了单体模式,工厂模式,门面模式以及STL编程-In this example, the realization of a single model, factory model, window patterns and STL programming
FactoryPattern
- Head First 设计模式原书用的是JAVA写的代码,网络上也有C#的,但没有见到用C++实现的。这是我用C++实现的工厂模式的代码 -Head First Design Patterns used in the original book is written in JAVA code, the network also has C#, but did not see with C achievable. This i
Src
- 俄罗斯方块小游戏。但是是用工厂模式思想写的。对于学习工厂模式,面向接口的编程很有帮助
designPattern
- JDBC连接数据库代码,采用设计模式中的工厂模式和策略模式进行设计,对于需要连接Mysql更是提供了很好的框架性,隐藏了数据库操作的复杂性-JDBC database connection code, design patterns factory pattern and strategy pattern design, for it is necessary to connect Mysql provides a good fr a
gl_stencil_shadow_volume
- 阴影体的介绍很好 ,很强大 啊 真的很好啊 。 有单体模式,工厂模式-design pattern
daima
- Maticsoft 自动化智能软件系列 Codematic 是一款为C#数据库程序员设计的自动代码生成器,Codematic 生成的代码基于基于面向对象的思想和三层架构设计,结合了Petshop中经典的思想和设计模式,融入了工厂模式,反射机制等等一些思想。采用 Model + DAL + BLL + Web 的设计,主要实现在 C# 中对应数据库中表的基类代码的自动生成,包括生成属性、添加、修改、删除、查询、存在性、 Model 类
TankWar166.23
- 图片版坦克大战,初步实现了工厂模式,调停者模式,责任链模式,策略模式-The rudimentary pictured TankWar implements the patterns of factory, Mediating, Responsibility-chain, strategy, but the only start.Later will come the final Tank.
DuckDesign
- java 设计模式之抽象工厂模式例程 通过创建鸭子实例的来说抽象工厂模式的原理及应用-java design patterns of the abstract factory pattern routines
factory
- 用工厂模式实现职工表格,产品表格,部门表格的建立。-Workers with the factory pattern to achieve the form, the product form, the establishment of the sectoral tables.
Application
- 使用3种设计模式:工厂模式,组合模式,策略模式,实现图像的切换。-The use of three kinds of design patterns: Factory pattern, combined model, strategy pattern, to achieve the image switching.
SimpleFactory
- 简单工厂模式 简单工厂模式 简单工厂模式 -Simple Factory PatternSimple Factory PatternSimple Factory Pattern
工厂模式
- 我们则可以创建一个Factory C工厂类,该类专心负责生产Product C类产品。由于Factory A、Factory B和Factory C之间没有关系,当加入Factory C加入时,对Factory A和Factory B的工作没有产生任何影响,那么对代码进行测试时,只需要单独对Factory C和Product C进行单元测试,而Factory A和Factory B则不用进行测试,则可省去大量无趣无味的测试工作。(thi