Java / Design Patterns
Is template method pattern an example of Inversion of control?
Yes. As per wiki,the template method is used in frameworks, where each implements the invariant parts of a domain's architecture, leaving "placeholders" for customisation options. This is an example for inversion of control, also called the Hollywood principle.
More Related questions...