对象内存布局 (13)——上一篇的纠正

下面来看看虚基类对对象内存布局的影响。虚基类的主要作用就是在所有的派生类中,保留且仅保留一份虚基类的suboject。

#include <iostream>
using namespace std;

class Base
{
public:
    int m_base;
    Base():m_base(20){}
    virtual void vfBase_1()
    {
        cout << "This is in Base::vfBase_1()" << endl;
    }
    virtual void vfBase_2()
    {
        cout << "This is in Base::vfBase_2()" << endl;
    }
};

class Derived : public virtual Base
{
public:
    int m_derived;
    Derived():m_derived(10){}
    virtual void vfDerived()
    {
      cout << "This is in Derived::vfDerived()" << endl;
    }
    void vfBase_1()
    {
        cout << "This is in Derived::vfBase_1()" << endl;
    }
};

typedef void (*VFun)(void);

int main(void)
{
    Derived d;
    int **pVtab=NULL;
    pVtab=(int**)&d;
    cout << "The size of Base object = \t" << sizeof(Derived) << endl;
    cout << endl;
    cout<<"derived lst virtual function address: "<<(int*)(*((int*)(*(int*)&d) + 0))<<endl;
    cout<<"derived lst virtual function result: ";
    VFun pVF =(VFun)pVtab[0][0];
    pVF();
    cout<<endl;
    cout<<"derived 2nd virtual function address: "<<(int*)(*((int*)(*(int*)&d) + 1))<<endl;
    cout<<"derived 2nd virtual function result: ";
    pVF = (VFun)pVtab[0][1];
    pVF();
    cout<<endl;
    cout<<"virtual table end flags: "<<pVtab[0][2]<<endl;
    cout<<endl;

    cout<<"derived data member:";
    cout<<(int)*((int*)&d+1)<<endl;

    cout<<"base lst virtual function address: "<<(int*)pVtab[2][0]<<endl;
    cout<<"base lst virtual function result: ";
    pVF = (VFun)pVtab[2][0];
    pVF();
    cout<<endl;
    //转换为int*就代表虚函数的地址
    cout<<"base 2nd virtual function address: "<<(int*)(*((int*)(*((int*)&d+2)) + 1))<<endl;
    cout<<"base 2nd virtual function result: ";
    //转换为vFun代表虚函数的函数指针
    pVF = (VFun)(*((int*)(*((int*)&d+2)) + 1));
    pVF();
    cout<<endl;
    cout<<"virtual table end flags: "<<(*((int*)(*((int*)&d+2)) + 2))<<endl;
    cout<<endl;
    cout<<"base data member:";
    cout<<(int)pVtab[3]<<endl;
    return 0;
}

运行结果:

虚继承的内存分布图:

 

时间: 2024-10-25 01:31:35

对象内存布局 (13)——上一篇的纠正的相关文章

对象内存布局 (14)

前言 07年12月,我写了一篇<C++虚函数表解析>的文章,引起了大家的兴趣.有很多朋友对我的文章留了言,有鼓励我的,有批评我的,还有很多问问题的.我在这里一并对大家的留言表示感谢.这也是我为什么再写一篇续言的原因.因为,在上一篇文章中,我用了的示例都是非常简单的,主要是为了说明一些机理上的问题,也是为了图一些表达上方便和简单.不想,这篇文章成为了打开C++对象模型内存布局的一个引子,引发了大家对C++对象的更深层次的讨论.当然,我之前的文章还有很多方面没有涉及,从我个人感觉下来,在谈论虚函数

对象内存布局 (11)

注意:关于内存对齐(memory alignment),请看关于内存对齐问题,后面将会用到.   下面我们进行在普通继承(即非虚继承)时,派生类的指针转换到基类指针的情形研究.假定各类之间的关系如下图:   代码如下: #include <iostream> using namespace std; class Parent { public: int parent; }; class Child : public Parent { public: int child; }; class Gr

对象内存布局 (10)

在对象内存布局 (9)基础上做些修改:派生类override基类的虚函数,即Base2 override Base1中声明的虚函数vfBase1(),Base3 override Base1中声明的虚函数vfBase1()和Base2中声明的虚函数vfBase2(), Derived override Base1中声明的虚函数vfBase1().Base2中声明的虚函数vfBase2()和Base3中声明的虚函数vfBase3().修改如下: #include <iostream> using

对象内存布局 (7)

在对象内存布局 (5)的代码中,在Derived类中覆盖Base1中声明的vfBase1_1(),其他代码不变.修改后的代码如下: #include <iostream> using namespace std; class Base1 { public: int m_base1; inline virtual void vfBase1_1() { cout << "This is in Base1::vfBase1_1()" << endl; }

对象内存布局 (6)

如果在对象内存布局 (5)的代码中,将Base1中的两个虚函数声明删除,同时将main函数中的下面代码注释掉(因为现在只有两张虚函数表了): 代码如下: #include <iostream> using namespace std; class Base1 { public: int m_base1; /*inline virtual void vfBase1_1() { cout << "This is in Base1::vfBase1_1()" <

对象内存布局 (12)

下面来看看虚基类对对象内存布局的影响.虚基类的主要作用就是在所有的派生类中,保留且仅保留一份虚基类的suboject.   a. 一个虚基类的情况 #include <iostream> using namespace std; class Base { public: int base_member; }; class Derived : public virtual Base {}; int main(void) { Base b; Derived d; cout << siz

对象内存布局 (15)

重复继承   下面我们再来看看,发生重复继承的情况.所谓重复继承,也就是某个基类被间接地重复继承了多次.   下图是一个继承图,我们重载了父类的f()函数.   其类继承的源代码如下所示.其中,每个类都有两个变量,一个是整形(4字节),一个是字符(1字节),而且还有自己的虚函数,自己overwrite父类的虚函数.如子类D中,f()覆盖了超类的函数, f1()和f2() 覆盖了其父类的虚函数,Df()为自己的虚函数. class B {     public:         int ib;  

对象内存布局 (5)

内容概要: 满足下面3个条件时, 1. 父类有虚函数,子类也有虚函数,且子类的虚函数重写或覆盖了父类的虚函数 2. 非虚继承 3. 多重继承 类对象之内存布局 多重继承,派生类不重写基类中的虚函数. 假定各类之间的关系如下图:     代码如下: #include <iostream> using namespace std; class Base1 { public: int m_base1; inline virtual void vfBase1_1() { cout << &

vs2008下C++对象内存布局(3):加上虚函数

这次我们为父类加上虚函数: class CParent { public: int parent_a; int parent_b; public: virtual void parent_f1() { parent_a = 0x10; } virtual void parent_f2() { parent_b = 0x20; } }; class CChild : public CParent { public: int child_a; int child_b; public: virtual