На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:
общая лексика
матричная ДНК
общая лексика
ДНК
дезоксирибонуклеиновая кислота
(Distributed Internet Application) распределённые приложения Интернет, архитектура DNA
(Digital Network Architecture) архитектура цифровой сети
сетевая архитектура, разработанная корпорацией Digital Equipment. Реализована в сети DECnet
синоним
Смотрите также
существительное
общая лексика
архитектура цифровых сетей
синоним
['s(j)u:pəkɔil]
общая лексика
суперспираль
спираль второго порядка
синоним
In object-oriented programming, the template method is one of the behavioral design patterns identified by Gamma et al. in the book Design Patterns. The template method is a method in a superclass, usually an abstract superclass, and defines the skeleton of an operation in terms of a number of high-level steps. These steps are themselves implemented by additional helper methods in the same class as the template method.
The helper methods may be either abstract methods, in which case subclasses are required to provide concrete implementations, or hook methods, which have empty bodies in the superclass. Subclasses can (but are not required to) customize the operation by overriding the hook methods. The intent of the template method is to define the overall structure of the operation, while allowing subclasses to refine, or redefine, certain steps.