虚基类问题的提出和初探

// project100.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include "pch.h"
#include <iostream>
#include <time.h >
#include <stdio.h>
#include <vector>

using namespace std;

class Grand //爷爷类
{
public:
	int m_grand;
};
class A1 : virtual public Grand
{
public:
	int m_a1;
};

class A2 : virtual public Grand
{
public:
	int m_a2;
};

class C1 :public A1, public A2
{
public:
	int m_c1;
};

int main()
{
	//一:虚基类(虚继承/虚派生)问题的提出
	//传统多重继承造成的 :空间问题,效率问题,二义性问题;
	cout << sizeof(Grand) << endl;
	cout << sizeof(A1) << endl;
	cout << sizeof(A2) << endl;
	cout << sizeof(C1) << endl;

	//C1 c1;
	//c1.m_grand = 12; //访问不明确,名字冲突,二义性;
	//                         //引入虚基类之后,就不会出现访问不明确的问题了
	//c1.A1::m_grand = 13;
	//c1.A2::m_grand = 15;

	//虚基类,让Grand类只被继承一次;

	//二:虚基类初探
	//两个概念:(1)虚基类表 vbtable(virtual base table).(2)虚基类表指针 vbptr(virtual base table pointer)
	//空类sizeof(Grand) ==1好理解; 
	//virtual虚继承之后,A1,A2里就会被编译器插入一个虚基类表指针,这个指针,有点成员变量的感觉
	//A1,A2里因为有了虚基类表指针,因此占用了4个字节
	A1 a1;
	A2 a2;
	//虚基类表指针,用来指向虚基类表(后续谈)。

	   	  	

	return 1;
}

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值