- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
抽象工厂设计模式(Abstract factory design model)
抽象工厂设计模式(Abstract factory design model)
The project name is: AbstractFactoryMode
1. establish an abstract factory
Using System;
Using System.Collections.Generic;
Using System.Text;
Namespace AbstractFactoryMode
{
/ / / summary
Just General Factory
/ / / /summary
Public abstract class AbstractFactory
{
Public, abstract, AbstractUser, CreateUser ();
Public, abstract, AbstractBook, CreateBook ();
}
}
2. establish a sub factory (the factory inherits the master plant and implements the abstract method of the abstract factory)
Using System;
Using System.Collections.Generic;
Using System.Text;
Namespace AbstractFactoryMode
{
/ / / summary
Just a concrete factory
/ / / /summary
Public class ConcreteFactory: AbstractFactory
{
/ / / summary
Public sub factory, used to create the user
/ / / /summary
/ / / returns/returns
Public, override, AbstractUser, CreateUser ()
{
/ / specific product
Return, new, User ();
}
/ / / summary
Public sub factory, used to create books
/ / / /summary
/ / / returns/returns
Public, override, AbstractBook, CreateBook ()
{
/ / specific product
Return, new, Book ();
}
}
}
3. create abstract products that are inherited from concrete entity classes
//user (user) abstract product
Using System;
Using System.Collections.Generic;
Using System.Text;
Namespace AbstractFactoryMode
{
/ / / summary
Just writing method about creating abstract products, users need
This product can be written in the form of abstract / / / interface, to achieve the same effect
/ / / /summary
Public abstract class AbstractUser
{
/ / / summary
This method is used to create the user just
/ / / /summary
Public, abstract, void, CreateUser ();
You can also write a lot of methods / below
/ / for example:
//public Abstract IListuser (GetAllUser) - all users
//public, abstract, user, GetUserById () -- Query users according to ID
//public abstract user ModifyUserByName () - modify user by name
/ / these methods can be implemented in the user class
If this method is changed to / / interface, t
您可能关注的文档
- 2011感动中国十大人物颁奖词(2011, moving China's top ten awards speech).doc
- 2011感动中国文档(2011 moved Chinese documents).doc
- 2011文常识(2011 common sense).doc
- 2011文综(2011 text synthesis).doc
- 2011感动人物事迹颁奖词(2011, moving characters, deeds, awards).doc
- 2011春节新年 对联(2011 spring festival couplets).doc
- 2011最新iwe 材料部分 工艺试题(2011, the latest IWE materials, part of the technical questions).doc
- 2011年高中语文第一轮复习文学常识总结(二(Summary of the first round of Chinese literature review in senior high school (two) in 2011).doc
- 2011起名(2011 name).doc
- 2011江西高考语文(2011 Jiangxi college entrance examination language).doc
- 抽象思维的局限性及教学对策(Limitations of abstract thinking and teaching strategies).doc
- 抽象类和接口的优缺点(The advantages and disadvantages of abstract classes and interfaces).doc
- 抽象类和接口的区别,必须弄明白的(The distinction between abstract classes and interfaces must be made clear).doc
- 抽象表现主义绘画 外国美术史(Abstract expressionism, painting, history of foreign art).doc
- 抽象艺术和中国书法(Abstract art and Chinese Calligraphy).doc
- 拆分习题 突破难点(Split exercises, break through difficulties).doc
- 抽象的价值数学与当代生命科学(Abstract values Mathematics and contemporary life sciences).doc
- 抽油烟机清洗方法(Cleaning method for range hood).doc
- 抽象思维和逻辑思维是程序设计的基础(Abstract thinking and logical thinking are the basis of program design).doc
- 拆焊贴片元件的好经验(两条)(Good experience in removing welding patch elements (two)).doc
文档评论(0)