C++动态绑定的实现(虚函数表)

大家都知道C++动态绑定的实现是通过虚函数体现的,再深入研究一下,程序是如何知道该调用哪个函数呢?这就涉及到了虚函数的底层实现问题,类时通过虚函数表来完成虚函数寻址的。

具体来说就是,当我们用父类指针来操作一个子类时,这张虚函数表就闪亮登场了,它就像一张地图一样,指示这实际应该调用的函数。下面我们就来探索一下这张表到底有多神奇。

I、无继承实现

C++的标准规格说明书中说到,编译器必须要保证虚函数表的指针存在于对象实例中最前面的位置(这是为了保证正确的取得要调用虚函数的偏移量)。

根据上面引用的说法,我们有如下测试代码1:

#include<iostream>

using namespace std;

class Base {
public:
    virtual void f() {cout << "Base::f" << endl;}
    virtual void g() {cout << "Base::g" << endl;}
    virtual void h() {cout << "Base::h" << endl;}
};


int main()
{
    typedef void(*Fun)(void);
    Base b;
    Fun pFun = nullptr;
    cout << "虚函数表地址:" << (int*)(&b) << endl;
    cout << "虚函数表--第一个函数地址:" << (int*)*(int*)(&b) << endl;

    pFun = (Fun)*((int*)*(int*)(&b));    //Base::f
    cout << "第一个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&b) + 1);   //Base::g
    cout << "第二个虚函数为:";
    pFun();
    cout << endl;


    pFun = (Fun)*((int*)*(int*)(&b) + 2);   //Base::h
    cout << "第三个虚函数为:";
    pFun();
    cout << endl;

    return 0;
}

测试1输出结果

从测试结果中可以得到下面的虚函数寻址方式示意图:

虚函数表示意图1

II、一般继承(无虚函数继承)

假如有如下继承关系:

继承关系示意图1

注意到,这个继承关系中,子类没有重写任何父类的函数。那么在派生实例中虚函数表该是什么样子的,接下来进行如下测试2:

#include<iostream>

using namespace std;

class Base {
public:
    virtual void f() {cout << "Base::f" << endl;}
    virtual void g() {cout << "Base::g" << endl;}
    virtual void h() {cout << "Base::h" << endl;}
};

class Derive : public Base {
public:
    virtual void f1() {cout << "Derive::f1" << endl;}
    virtual void g2() {cout << "Derive::g1" << endl;}
    virtual void h1() {cout << "Derive::h1" << endl;}
};


typedef void(*Fun)(void);

int main()
{
    Base b;
    Derive d;
    Fun pFun = nullptr;
    cout << "父类虚函数表地址:" << (int*)(&b) << endl;
    cout << "父类虚函数表--第一个函数地址:" << (int*)*(int*)(&b) << endl;

    cout << "子类虚函数表地址:" << (int*)(&d) << endl;
    cout << "子类虚函数表--第一个函数地址:" << (int*)*(int*)(&d) << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+0);
    cout << "第一个虚函数为:";      //Base::f
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+1);   //Base::g
    cout << "第二个虚函数为:";
    pFun();
    cout << endl;


    pFun = (Fun)*((int*)*(int*)(&d)+2);    //Base::h
    cout << "第三个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+3);    //Derive::f1
    cout << "第四个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+4);    //Derive::g1
    cout << "第五个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+5);   //Derive::h1
    cout << "第六个虚函数为:";
    pFun();
    cout << endl;

    return 0;
}

测试2结果:

测试2输出结果

从测试2输出结果中可以得到如下结论:
在无虚函数重写的情况下所实现的虚函数表如下:

虚函数表示意图2

III、一般继承(有虚函数复写)

假设继承关系如下:

继承关系示意图2

我们用下面的测试3代码观测虚函数表:

#include<iostream>

using namespace std;

class Base {
public:
    virtual void f() {cout << "Base::f" << endl;}
    virtual void g() {cout << "Base::g" << endl;}
    virtual void h() {cout << "Base::h" << endl;}
};

class Derive : public Base {
public:
    void f() override {cout << "Derive::f" << endl;}
    virtual void g2() {cout << "Derive::g1" << endl;}
    virtual void h1() {cout << "Derive::h1" << endl;}
};


typedef void(*Fun)(void);

int main()
{
    Base b;
    Derive d;
    Fun pFun = nullptr;
    cout << "父类虚函数表地址:" << (int*)(&b) << endl;
    cout << "父类虚函数表--第一个函数地址:" << (int*)*(int*)(&b) << endl;

    cout << "子类虚函数表地址:" << (int*)(&d) << endl;
    cout << "子类虚函数表--第一个函数地址:" << (int*)*(int*)(&d) << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+0);      //Derive::f
    cout << "第一个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+1);   //Base::g
    cout << "第二个虚函数为:";
    pFun();
    cout << endl;


    pFun = (Fun)*((int*)*(int*)(&d)+2);    //Base::h
    cout << "第三个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+3);    //Derive::g1
    cout << "第四个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+4);    //Derive::h1
    cout << "第五个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)(&d)+5);   //无函数,会出现一个error
    cout << "第六个虚函数为:";
    pFun();
    cout << endl;

    return 0;
}

测试结果如下:

测试3输出结果

由测试结果可以得出在有虚函数重写的子类中虚函数表如下图所示:

虚函数表示意图3

IV、多重继承(无虚函数重写)

多重继承会为一个子类对象产生多个虚函数表,这也是能通过我们上面的结论得出的,因为根据测试2,我们发现父类对象的第一个虚函数与子类对象的第一个虚函数地址相同,所以如果子类继承自多个父类,则分别继承自多个父类的虚函数表应该各自有不同的起始地址,再根据偏移量寻址得到其他虚函数地址。

假设继承关系如下:

继承关系示意图3

我们用下面的测试4代码观测虚函数表:

#include<iostream>

using namespace std;

class Base1 {
public:
    virtual void f() {cout << "Base1::f" << endl;}
    virtual void g() {cout << "Base1::g" << endl;}
    virtual void h() {cout << "Base1::h" << endl;}
};

class Base2 {
public:
    virtual void f() {cout << "Base2::f" << endl;}
    virtual void g() {cout << "Base2::g" << endl;}
    virtual void h() {cout << "Base2::h" << endl;}
};

class Base3 {
public:
    virtual void f() {cout << "Base3::f" << endl;}
    virtual void g() {cout << "Base3::g" << endl;}
    virtual void h() {cout << "Base3::h" << endl;}
};

class Derive : public Base1, public Base2, public Base3 {
public:
    virtual void f1() {cout << "Derive::f1" << endl;}
    virtual void g1() {cout << "Derive::g1" << endl;}
};


typedef void(*Fun)(void);

int main()
{
    Base1 b1;
    Base2 b2;
    Base3 b3;
    Derive d;
    Fun pFun = nullptr;
    cout << "Base1虚函数表地址:" << (int*)(&b1) << endl;
    cout << "Base1虚函数表--第一个函数地址:" << (int*)*(int*)(&b1) << endl;

    cout << "Base2虚函数表地址:" << (int*)(&b2) << endl;
    cout << "Base2虚函数表--第一个函数地址:" << (int*)*(int*)(&b2) << endl;

    cout << "Base3虚函数表地址:" << (int*)(&b3) << endl;
    cout << "Base3虚函数表--第一个函数地址:" << (int*)*(int*)(&b3) << endl;

    cout << "子类虚函数表地址:" << (int*)(&d) << endl;
    cout << "子类虚函数表--第一个函数地址:" << (int*)*(int*)(&d) << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+0); //Base1::f
    cout << "第一个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+1);   //Base1::g
    cout << "第二个虚函数为:";
    pFun();
    cout << endl;


    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+2);    //Base1::h
    cout << "第三个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+3);    //Derive::f1
    cout << "第四个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+4);    //Derive::g1
    cout << "第五个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+1)+0);     //Base2::f
    cout << "第六个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+1)+1);     //Base2::g
    cout << "第七个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+1)+2);     //Base2::h
    cout << "第八个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+2)+0);     //Base3::f
    cout << "第九个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+2)+1);     //Base3::g
    cout << "第十个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+2)+2);     //Base3::h
    cout << "第十一个虚函数为:";
    pFun();
    cout << endl;

    return 0;
}

测试结果如下:

测试4输出结果

从输出结果中我们可以得到如下的虚函数表示意图:

虚函数表示意图4

V、多重继承(有虚函数重写)

假设继承关系如下:

继承关系示意图4

我们用下面的测试5代码观测虚函数表:

#include<iostream>

using namespace std;

class Base1 {
public:
    virtual void f() {cout << "Base1::f" << endl;}
    virtual void g() {cout << "Base1::g" << endl;}
    virtual void h() {cout << "Base1::h" << endl;}
};

class Base2 {
public:
    virtual void f() {cout << "Base2::f" << endl;}
    virtual void g() {cout << "Base2::g" << endl;}
    virtual void h() {cout << "Base2::h" << endl;}
};

class Base3 {
public:
    virtual void f() {cout << "Base3::f" << endl;}
    virtual void g() {cout << "Base3::g" << endl;}
    virtual void h() {cout << "Base3::h" << endl;}
};

class Derive : public Base1, public Base2, public Base3 {
public:
    void f() override {cout << "Derive::f" << endl;}
    virtual void g1() {cout << "Derive::g1" << endl;}
};


typedef void(*Fun)(void);

int main()
{
    Base1 b1;
    Base2 b2;
    Base3 b3;
    Derive d;
    Fun pFun = nullptr;
    cout << "Base1虚函数表地址:" << (int*)(&b1) << endl;
    cout << "Base1虚函数表--第一个函数地址:" << (int*)*(int*)(&b1) << endl;

    cout << "Base2虚函数表地址:" << (int*)(&b2) << endl;
    cout << "Base2虚函数表--第一个函数地址:" << (int*)*(int*)(&b2) << endl;

    cout << "Base3虚函数表地址:" << (int*)(&b3) << endl;
    cout << "Base3虚函数表--第一个函数地址:" << (int*)*(int*)(&b3) << endl;

    cout << "子类虚函数表地址:" << (int*)(&d) << endl;
    cout << "子类虚函数表--第一个函数地址:" << (int*)*(int*)(&d) << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+0); //Derive::f
    cout << "第一个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+1);   //Base1::g
    cout << "第二个虚函数为:";
    pFun();
    cout << endl;


    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+2);    //Base1::h
    cout << "第三个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+0)+3);    //Derive::g1
    cout << "第四个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+1)+0);    //Derive::f
    cout << "第五个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+1)+1);     //Base2::g
    cout << "第六个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+1)+2);     //Base2::h
    cout << "第七个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+2)+0);     //Derive::f
    cout << "第八个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+2)+1);     //Base3::g
    cout << "第九个虚函数为:";
    pFun();
    cout << endl;

    pFun = (Fun)*((int*)*(int*)((int*)&d+2)+2);     //Base3::h
    cout << "第十个虚函数为:";
    pFun();
    cout << endl;

    return 0;
}

测试结果如下:

测试5输出结果

从输出结果中我们可以得到如下的虚函数表示意图:

虚函数表示意图5

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342