dynamic binding - Definition. Was ist dynamic binding
Diclib.com
Online-Wörterbuch

Was (wer) ist dynamic binding - definition


dynamic binding         
The property of object-oriented programming languages where the code executed to perform a given operation is determined at run time from the class of the operand(s) (the receiver of the message). There may be several different classes of objects which can receive a given message. An expression may denote an object which may have more than one possible class and that class can only be determined at run time. New classes may be created that can receive a particular message, without changing (or recompiling) the code which sends the message. An class may be created that can receive any set of existing messages. C++ implements dynamic binding using "{virtual member functions}". One important reason for having dynamic binding is that it provides a mechanism for selecting between alternatives which is arguably more robust than explicit selection by conditionals or pattern matching. When a new subclass is added, or an existing subclass changes, the necessary modifications are localised: you don't have incomplete conditionals and broken patterns scattered all over the program. See overloading.
Late binding         
NAME BINDING WHICH IS RESOLVED AT RUN-TIME RATHER THAN IN PRE-EXECUTION TIME
Dynamic binding (computer science); Dynamic binding (computing); Late-binding; Late bound
In computing, late binding or dynamic linkage—though not an identical process to dynamically linking imported code libraries—is a computer programming mechanism in which the method being called upon an object, or the function being called with arguments, is looked up by name at runtime. In other words, a name is associated with a particular operation or object at runtime, rather than during compilation.
Dynamic binding (chemistry)         
PHYSICAL ORGANIC COMPLEXATION CATALYSIS CHEMISTRY TERM
In complexation catalysis, the term dynamic binding refers to any stabilizing interaction that is stronger at the transition state level than in the reactant-catalyst complex.

Wikipedia

Dynamic binding
Dynamic binding may refer to: