Subroutine

= SUB подпрограмма в программировании - именованный набор команд, выполняющий некоторое действие. Подпрограмма может быть вызвана из разных точек программы, может получать данные и возвращать результаты своей работы. Специальным видом подпрограмм являются функции. Разбиение программы на подпрограммы является общим приёмом, позволяющим уменьшить объём кода и, главное, упростить структуру программы. Подпрограммы могут быть сгруппированы в библиотеки подпрограмм (subroutine library) Смотри также: call, function, return, return address, return code, subroutine call Синоним(ы): procedure, routine, subprogram

Англо-русский словарь компьютерных терминов

Subroutine

информатика и компьютерные технологии подпрограмма

Англо-русский научно-технический словарь

Subroutine

подпрограмма

Англо-русский политехнический словарь

Subroutine

noun Etymology: International Scientific Vocabulary a subordinate routine; specifically a sequence of computer instructions for performing a specified task that can be used repeatedly

Merriam-Webster's Collegiate Dictionary

Subroutine

(Or "procedure") A sequence of instructions for performing a particular task. Most programming languages, including most machine languages, allow the programmer to define subroutines. This allows the subroutine code to be called from multiple places, even from within itself (in which case it is called recursive). The programming language implementation takes care of returning control to (just after) the calling location, usually with the support of call and return instructions at machine language level. Most languages also allow arguments to be passed to the subroutine, and one, or occasionally more, return values to be passed back. A function is often very similar to a subroutine, the main difference being that it is called chiefly for its return value, rather than for any side effects.

Free Online Dictionary of Computing