6
The Factory Method Pattern
In Chapter 5, we saw a couple of examples of the simplest of factories. The factory concept recurs all throughout object-oriented programming. In such cases, a single class acts as a traffic cop and decides which subclass of a single hierarchy will be instantiated.
The Factory Method pattern is a clever but subtle extension of this idea, where no single class makes the decision as to which subclass to instantiate. Instead, the superclass defers the decision to each subclass. This pattern does not actually have a decision point where one subclass is directly selected over another class. Instead, programs written to this pattern define an abstract class that creates objects but lets each subclass decide which object ...
Get Python Programming with Design Patterns now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.