码迷,mamicode.com
首页 > 编程语言 > 详细

C++再次理解虚表

时间:2017-07-21 23:21:23      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:proc   title   tty   int   sdn   text   include   each   his   


#include <iostream>
using namespace std;

class Base
{
public:
    virtual void fun1()
    {
        cout << "Base::fun1()" << endl;
    }
    virtual void fun2()
    {
        cout << "Base::fun2()" << endl;
    }
};
class Son : public Base
{
public:
    void fun1()
    {
        cout << "Son::fun1()" << endl;
    }
};
void Deal(int *p)
{
    typedef void(*Pfun)();//函数指针。
    //再次记住每张虚表后面的结束符是0(NULL)。
    for (int i = 0; p[i] != NULL; i++)
    {
        Pfun fun = (Pfun)p[i];
        fun();
    }
}
void test()
{
    Base b;
    Son s;
    int *p = (int *)*((int *)(&b));//此处是虚表的地址。
    Deal(p);//将虚表地址传入。
}
int main()
{
    test();
    return 0;
}

技术分享

C++再次理解虚表

标签:proc   title   tty   int   sdn   text   include   each   his   

原文地址:http://www.cnblogs.com/yangykaifa/p/7219717.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!