February 2000
Intermediate to advanced
352 pages
6h 31m
English
One type of pattern that we see again and again in OO programs is the Simple Factory pattern. A Simple Factory pattern returns an instance of one of several possible classes depending on the data provided to it. Usually all classes that it returns have a common parent class and common methods, but each performs a task differently and is optimized for different kinds of data. This Simple Factory serves as an introduction to the somewhat more subtle Factory Method GoF pattern we'll discuss shortly. It is, in fact, a special subset of that pattern.
To understand the Simple Factory pattern, let's look at the diagram in Figure 3.1.
Figure 3.1. A Simple Factory pattern.
In this figure, X is base class and ...
Read now
Unlock full access