Template Method

From CDOT Wiki
Revision as of 16:42, 19 March 2007 by Ayfung (talk | contribs) (Template Method)
Jump to: navigation, search

Template Method

Template Method, a class behavioral pattern, is way to provide general steps of a method, while deferring the implementation to its subclasses. Mostly used to encapsulate algorithms, it can help reduce code duplication and maximizes the reuse of subclasses.

UML Diagram

Code Samples

References

Links

BTP600