Modelul Template Method definește scheletul unui algoritm într-o clasă de bază, permițând subclaselor să completeze pași specifici fără a schimba structura generală. Captează un proces comun, permițând personalizarea pașilor individuali.
Ce face modelul Template Method
TEMPLATE METHOD → define an algorithm's overall STRUCTURE in a base method, with some STEPS
left for subclasses to implement:
→ the base class controls the overall flow (the "template")
→ subclasses override specific STEPS (the parts that vary)
→ the algorithm's structure is FIXED; the steps are customizable
→ "common process, customizable steps"
