Q:
What do you mean by late binding?
Answer
Late binding refers to function calls that are not resolved until run time. Virtual functions are used to achieve late binding. When access is via a base pointer or reference, the virtual function actually called is determined by the type of object pointed to by the pointer.
View answer
Workspace
Report Error
Discuss