继承中的对象模型
在C++编译器的内部可以理解为结构体,子类是由父类成员叠加子类新成员而成:
#include <iostream>
#include <string>
using namespace std;
class Base03{
public:
int m_a;
protected:
int m_b;
private:
int m_c; // 哪怕是私有属性,子类访问不到,子类会显示这个空间的占用,被编译器隐藏而已
};
class Son03 : public Base03{
public:
int m_d;
};
int main()
{
cout << "son03的大小为: " << sizeof(Son03) << endl; // 结果为16
return 0;
}