Early vs Late Binding and Major Programming Paradigms
Classified in Computers
Written on in
English with a size of 2.69 KB
Early Binding
Early binding — the binding that can be resolved at compile time by the compiler is known as static or early binding. The method definition and the method call are linked during compile time. This happens when all information needed to call a method is available at compile time. Early binding is more efficient than late binding.
Late Binding
Late binding — it is a runtime process. The method definition and the method call are linked during runtime. Execution speed is lower in late binding. Overriding methods are bound using late binding.
Programming Paradigms
Below are common programming paradigms and their characteristics.
Object-Oriented Programming (OOP)
Object-oriented programming is a programming paradigm based on the concept... Continue reading "Early vs Late Binding and Major Programming Paradigms" »