In
computer science, dynamic dispatch is the process of mapping a
message to a specific sequence of code (
method) at
runtime. This is done to support the cases where the appropriate method cannot be determined at
compile-time (i.e. statically). Dynamic dispatch is only used for code invocation and not for other binding processes (such as for global variables) and the name is normally only used to describe a language feature where a runtime decision is required to determine which code to invoke.
See more at Wikipedia.org...