EverSpring working shop

To pursue creative ideas based on nature.

统计

留言簿(1)

他山之石

阅读排行榜

评论排行榜

Some notes about the Factory Patterns

 

One of the primary goals of using a factory is to organize your code so you don't need to select teh exact constructor type when creating an object.
Two kinds of Factory Patterns, actually, they are similar, with difference that the abstract factory can contain servral factory methods.
  • Factory Method
  • Abstract Factory.
The key roles in the Factory Patterns include:
  • Product : Actually it acts as the working horse in the real time processing, I mean to do the work belonging to the products.
  • Product specific factory :  The place where the special product is made. Please note the word "special", which means that even there is a Super Class of Factory, each kind of product needs a special defined factory as derived factory which is 1-to-1 tightly connected to this specific product.
  • Super Class of Factory:
    1. Actually, it acts as a place where the product specific factories gather.  A table of Concret Product Specific Factory Objects is maintained, as form of static member, by this class.
    2. Also, the class provide the virtual method of the Create() for the derivded Product Specific Factory class to implement respectively.
  • Factory Initializer: The responsibility of this Class is to realize all the necessary Product Specific Factories, and place them into the static Factory Table of the Super Class Factory. This repsonsibility should and MUST be finished before all the necessary Fatories begin to work on manufacturing, normally occurs when the system is initialized.
Some rules(if can call them as rules) needs to be noted when implemented by C++:
  1. The constructor of the specific product normally is designed as Private member, to only allow friend class to access. The purpose of this rule is to prevent the product to be made by incorrect factory.
  2. The 1-to-1 product specific factory is designed as the friend class of the its specific product class.  The implementation of the Product specifc factory could be combined into the internal body of the product as the form of Product::Factory. We can also to place the factory out the product, as the form of ProductFactory. As you wish, :)
  3. The list of the concret factories of the super class of factory is designed as static. The index of the list is used to find the correct concrete factory by passing the Identifier parameter.
  4. The signleton is also used: Factory and the Factory Initializer should be singleton. In other words, we can only has only one set of factories and only one factory initializer. Otherwise, there will exist two interactive factory framework in a single system. The result is that the system is crashed.

Any supplementary information or correction is to be attached later, with further understanding on this important Patterns.

Alex Zhang

posted on 2007-12-11 22:55 everspring79 阅读(354) 评论(1)  编辑 收藏 引用 所属分类: Notes

评论

# re: Some notes about the Factory Patterns 2008-01-23 17:54 everspring79

This Monday, I hold a presentation about the design of the fpf agent by introducing the concept of the abstract factory. However, maybe it is due to my presentation skill, the audience does not show great interest on this design pattern.   回复  更多评论   


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理