how are virtual tables stored in memory? their layout?
e.g.
class A{ public: virtual void doSomeWork(); }; class B : public A{ public:
From wikipedia:
The C++ standards do not mandate exactly how dynamic dispatch must be implemented
So the answer is no. Layout of vtable is implementation defined.