3
Reply

What is difference between Early Binding, Late Binding, Complie Polymorphism and Runtime Polymorphism?

Dharmendra Singh

Dharmendra Singh

11y
8.5k
0
Reply

    Early binding also called Compile polymorphism and Late binding also called Runtime polymorphism.

    1)Early binding also called Compile polymorphism(Static polymorphism) and Late binding also called Runtime polymorphism(dynamic polymorphism). 2)Compile polymorphism is achieved by using Operator Overloading and Function Overloading while Runtime polymorphism is achieved using Virtual function. 3) In Compile polymorphism we can get the object type at compile time so we also called it as Early binding, and in Runtime polymorphism we can get the object type at Run time so we also called it as Late binding.

    Balachandran ji. check my question then give your explanation..