Saturday, October 28, 2017

Dynamic Binding or Late Binding

  Dynamic binding:
o      Binding means link between procedure call and code to be execute.
o      Dynamic binding means link exist between procedure call and code to be execute at run time when that procedure is call.
o      It is also known late binding.
o      It is generally use with polymorphism and inheritance.
o      For example, complier comes to know at runtime that which function of sum will be call either with two arguments or with three arguments.

3 comments: