top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between early binding and late binding?

+2 votes
290 views
What is the difference between early binding and late binding?
posted May 5, 2014 by Harshita Dhaliwal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The simple difference is:
- Calling a non virtual method, decided at a compile time is known as early binding.
- Calling a virtual method (Pure Polymorphism), decided at a runtime is known as late binding.

answer May 6, 2014 by Anamika
...