Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The virtual function table pointer exists in each object (usually for efficiency, it will be placed at the start address of the object), it points to the address of the virtual function table of the class where the object is located; in multiple inheritance situation, there will be multiple virtual function table pointers point to virtual function tables corresponding to different base classes.
- Loading branch information