When to Use a Factory Pattern?
Answers were Sorted based on User's Feedback
Answer / guest
A class can?t anticipate which kind of class of objects it
must create.
A class uses its subclasses to specify which objects it creates.
You want to localize the knowledge of which class gets created.
There are several similar variations on the factory pattern
to recognize.
1. The base class is abstract and the pattern must return a
complete working class.
2. The base class contains default methods and is only
subclassed for cases where the default methods are insufficient.
3. Parameters are passed to the factory telling it which of
several class types to return. In this case the classes may
share the same method names but may do something quite
different.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / md. nasim ahmed
The conventional polymorphism approach can also be used to reach the desired result of handling different class object with same set of methods. But the problem is the driver (main/module) must handle the creation of type of object.
CBase *bptr=new CChild();
bptr->method1();
----
The Factory design pattern ease the programming effort to write the driver program as the creation of object is handled by base class only(factory class).
CBase *bptr= CBase::make_object(chioce);
----
Now refer http://sourcemaking.com/design_patterns/factory_method/cpp/1
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / abhishek kumar
Factory pattern will be used when a creator class works
parallel with the product class
| Is This Answer Correct ? | 3 Yes | 2 No |
2. Create your own definition of a system. Based on the “system” definitions a. Identify your viewpoint of shortcomings in the definitions. b. Provide rationale as to why you believe that your definition overcomes those shortcomings. c. From an historical perspective, identify three precedented systems that were replaced by unprecedented systems.
What is the S/W model used in the project. What are the optimization techniques used. Give examples ?
2 Answers Infosys, Symphony, Wipro,
Can we have this pattern implemented using static class?
What is the publish/subscribe model?
What is meant by design pattern?
If i make my selection in State Dropdown list, i would the City and ZipCode dropdown list to be automatically reupdated based on the State i select.(This to avoid the user select a City or Zipcode that does not correspond to the State previously selected.)
What is difference between function oriented design and object oriented design?
What are the different types of Design Patterns and Explain them?
3 Answers Genpact, Gradatim, Gul Ahmed, TCS, Wipro,
What are the biggest trends in UX Design these days?
i have file(ps),dont know how many records are there. move half of the records to 2 files. how can we do
What are the differences between the design patterns and the framework?
What is a pattern library?