What is the difference between Early and Late Binding?

binding, dynamic-binding, static-binding

Solution

The short answer is that early (or static) binding refers to compile time binding and late (or dynamic) binding refers to runtime binding (for example when you use reflection).

Problem

What is the difference between early and late binding?

Original source

Related problems