C++ Virtual Functions Question: Download C++ Virtual Functions PDF

Do you know the use of Vtable?

Tweet Share WhatsApp

Answer:

Vtables are used for virtual functions. Its a shortform for Virtual Function Table.

It's a static table created by the compiler. Compiler creates a static table per class and the data consists on pointers to the virtual function definitions. They are automatically initialised by the compiler's constructor code.

Since virtual function pointers are stored in each instance, the compiler is
enabled to call the correct vrtual function at runtime.

Download C++ Virtual Functions PDF Read All 30 C++ Virtual Functions Questions
Previous QuestionNext Question
What is Dynamic Binding?What is virtual base class?