نمط Template Method يعرّف هيكل عظمي لخوارزمية في فئة أساسية، مما يسمح للفئات المشتقة بملء خطوات محددة دون تغيير البنية الكلية. وهو يلتقط عملية شائعة مع السماح بتخصيص الخطوات الفردية.
ما الذي يفعله نمط 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"
