Template Method is an Object Oriented design pattern that let's a subclass implement particular steps of an algorithm defined in the superclass.
Template Method is an Object Oriented design pattern that let's a subclass implement particular steps of an algorithm defined in the superclass. Mainly used in frameworks, to allow the code using the frameword to 'plug-in' to an algorithms defined by the framework.