What is virtual table?
Answer / Md Hasan Ahmad
Virtual Table (vtable) in C++ refers to a table that stores pointers to virtual functions for a particular class. It allows polymorphism by enabling derived classes to provide their own implementations of inherited virtual functions, and for the correct implementation to be called at runtime based on the object's actual type.
| Is This Answer Correct ? | 0 Yes | 0 No |
what are Access specifiers in C++ class? What are the types?
Explain virtual class?
What is virtual destructor? What is its use?
What is the main purpose of overloading operators?
What does new return if there is insufficient memory to make your new object?
What is abstraction c++?
Live example for static function?
Definition of class?
What are the storage qualifiers?
What is the function to call to turn an ascii string into a long?
What are the new features that iso/ansi c++ has added to original c++ specifications?
What is the difference between static link library and dynamic link library?