What is a vtable in C++

Viewed 47881

Possible Duplicate:
why do I need virtual table?

What is a vtable in C++?

So far I know that vtable is a virtual table which has an array of pointers to virtual functions. Is there an article I can read with an example of a practical implementation? (Any walk through will be appreciated.)

3 Answers
Related