//演示一下c++如何找到虚表地址vptr以及如何通过虚表调用虚函数//zhangpeng@myhexin.com 20130811#includeusing namespace std;class CTest{public: CTest(){} virtual void Print(){cout<<"hello world"< >第一章虚表的第一项是typeinfo,第二项应该是第一个虚函数Add()。 //但vc++2010这里第一项就是Add() int* p1 = (int*)&a; printf("vptr=%p\n", *p1); int* p2 = (int*)&b; printf("vptr=%p\n", *p2); int* vptr = (int*)(*p2); //通过虚表直接调用Add typedef void(*FUNC)(); //这里参数不太确定,参数为void也是可以的 typedef void(*FUNC2)(CTest*); FUNC pf = (FUNC)vptr[0]; //书中说函数在虚表里会被改为void func(CTest*) FUNC2 pf2 = (FUNC2)pf; pf2(&a); cin.get(); return 0;}