C++ Programming - OOPS Concepts - Discussion

Discussion Forum : OOPS Concepts - General Questions (Q.No. 24)
24.
How "Late binding" is implemented in C++?
Using C++ tables
Using Virtual tables
Using Indexed virtual tables
Using polymorphic tables
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
22 comments Page 2 of 3.

Savitha.D said:   1 decade ago
I need a clear description about virtual tables and its functions can any one help me out.

Geeta kamble said:   1 decade ago
Hence the dynamic and late binding is one an the same thing.

Deepika said:   1 decade ago
What is late binding?

What it does?

What is virtual table and what it contains?

Aamir said:   1 decade ago
Thanks shweta nd Yogesh.

Shweta said:   1 decade ago
To implement virtual functions, C++ uses a special form of late binding known as the virtual table. The virtual table is a lookup table of functions used to resolve function calls in a dynamic/late binding manner. The virtual table sometimes goes by other names, such as "vtable", "virtual function table", "virtual method table", or "dispatch table".

Savitha.s said:   1 decade ago
Explain more about virtual table and late binding ?

Yogesh said:   1 decade ago
The virtual table is a lookup table of functions used to resolve function calls in a dynamic/late binding manner.

Vivek Kumar said:   1 decade ago
Late Binding means Dynamic Binding or Runtime Binding. Various mappings done at the running of program code.

Viny said:   1 decade ago
What is late binding. ?

Dimple said:   1 decade ago
What do you mean by virtual table?


Post your comments here:

Your comments will be displayed after verification.