How is Late Binding Implemented in C++?
By BYJU'S Exam Prep
Updated on: September 25th, 2023

How is Late Binding Implemented in C++?
- Using C++ tables
- Using Virtual tables
- Using Indexed virtual tables
- Using polymorphic tables
Table of content
Answer: B. Using virtual tables
Late Binding is Implemented in C++ using virtual tables.
Solution
The virtual table, a unique kind of late binding, is used to implement virtual functions in C++. The virtual table is a lookup table of functions that are used to dynamically or late bind function calls. Other names for the virtual table include “vtable”, “virtual function table”, “virtual method table”, and “dispatch table”.
Therefore, the late binding is implemented in C++ using virtual tables.
☛ Related Questions: