- Dynamic Binding means which function to call is decided at the run time.
- Dynamic Binding is also known as late binding.
- Calling to different functions by the compiler is slow in case of dynamic binding as compiler makes decision of function call at run time.
|
|
- Static Binding means which function to call is decided at compile time.
- Static Binding is also known as early binding.
- Calling to different functions by the compiler is fast in this case as compiler makes decision of function call at compile time.
|
|