zoukankan      html  css  js  c++  java
  • C++对象内存布局⑨VS编译器虚拟继承菱形继承

    C++对象内存布局--⑨VS编译器--虚拟继承--菱形继承

    //VS编译器--虚拟继承--菱形继承.cpp
    //2010.8.19
    //VS编译器
    #include <iostream>
    using namespace std;
    ////////////////////////////////////////////////////////////////
    class Base
    {
        public:
            Base(int a = 10):a(a)
            {
            }
            virtual void show()
            {
                cout << "Base::show()" << "\t" << a << endl;
            }
            virtual void testA()
            {
                cout << "Base::testA()" <<"\t" << a << endl;
            }
        private:
            int a;
    };
    ////////////////////////////////////////////////////////////////
    class BaseA : virtual public Base
    {
        public:
            BaseA(int b = 20):b(b)
            {
            }
            virtual void showA()
            {
                cout << "BaseA::showA()" << "\t" << b << endl;
            }
            void testA()
            {
                cout << "BaseA::testA()" << "\t" << b << endl;
            }
        private:
            int b;
    };
    ////////////////////////////////////////////////////////////////
    class BaseB : virtual public Base
    {
        public:
            BaseB(int c = 30):c(c)
            {
            }
            virtual void showB()
            {
                cout << "BaseB::showB()" << "\t" << c << endl;
            }
        private:
            int c;
    };
    ////////////////////////////////////////////////////////////////
    class Derived : public BaseA, public BaseB
    {
        public:
            Derived(int d = 40):d(d)
            {
            }
            virtual void show()
            {
                cout << "Derived::show()" << "\t" << d << endl;
            }
            virtual void test()
            {
                cout << "Derived::test()" << "\t" << d << endl;
            }
        private:
            int d;
    };
    ////////////////////////////////////////////////////////////////
    int main()
    {
        Derived obj;
        int** p = (int**)&obj;
        cout << "Derived obj sizeof = " << sizeof(obj) << endl;
        cout << "Derived obj 内存布局:" << endl;
        for (int i = 0; i != sizeof(obj)/4; ++i)
        {
            cout << p[i] << endl;
        }
        cout << endl;
       typedef void (__thiscall *fun)(void*pThis);//非常重要
    	/*通过虚函数表调用函数
    	第一个虚函数表指针。BaseA*/
    	((fun)(p[0][0]))(p);
    	((fun)(p[0][1]))(p);
    
    	//第二个虚函数表指针。BaseB
    	cout << endl;
    	((fun)(p[3][0]))(p+3);
    	//第三个虚函数表指针。Base
        cout << endl;
    	((fun)(p[8][0]))(p+8);
    	((fun)(p[8][1]))(p+8);
    	system("pause");
        return 0;
    }
    /*
    Derived obj sizeof = 40
    Derived obj 内存布局:
    0041A200
    0041A210
    00000014
    0041A1F8
    0041A208
    0000001E
    00000028
    00000000
    0041A1EC
    0000000A
    
    BaseA::showA()  20
    Derived::test() 40
    
    BaseB::showB()  30
    
    Derived::show() 40
    BaseA::testA()  20
    */
    
  • 相关阅读:
    jQuery基础之让出$,与其他库共存
    什么是闭包
    绑定repeater时三目运算加特殊结果处理
    将同一张表出来的两部分内容再合成一张表
    后台往前台写弹窗代码不显示
    固定行列转换加分段统计
    js调用后台方法(如果你能容忍执行的后台方法变成一个常量)
    javascript遍历数组
    基于SpringMVC框架使用ECharts3.0实现折线图,柱状图,饼状图,的绘制(上篇)
    echarts
  • 原文地址:https://www.cnblogs.com/cswuyg/p/1804105.html
Copyright © 2011-2022 走看看