多态是如何实现的

#include <iostream>
using namespace std;
class A
{
public:
	virtual void Func1()
	{
		cout << "class A Func1" << endl;
	}
	virtual void Func2()
	{
		cout << "class A Func2" << endl;
	}
};

class B : public A
{
public:
	virtual void Func1()
	{
		cout << "class B Func1" << endl;
	}
	void Func2()
	{
		cout << "class B Func2" << endl;
	}
	virtual void Func3()
	{
		cout << "class B Func3" << endl;
	}
};

int* GetFuncAddr(void* p, int offer)
{
	int* v_ptrAdrs = *((int**)p);
	return *((int**)v_ptrAdrs + offer);
}

typedef void (*gFUNC)();
void AFunc1Helper(A *p)
{
	//直接调用虚函数
	(*(gFUNC)GetFuncAddr(p, 0))();
}
//为每一个虚函数,实现一个辅助函数,用于指定虚函数表中的索引项
void AFunc2Helper(A *p)
{        
	(*(gFUNC)GetFuncAddr(p, 1))();
}

//B类中的虚表列表
void BFunc1Helper(B *p)
{
	(*(gFUNC)GetFuncAddr(p, 0))();
}

void BFunc2Helper(B *p)
{
	(*(gFUNC)GetFuncAddr(p, 1))();
}

void BFunc3Helper(B *p)
{
	(*(gFUNC)GetFuncAddr(p, 2))();
}

int _tmain(int argc, _TCHAR* argv[])
{
	A *pa = new B;
	B *pb = new B;

	//通过这种形式,可以非常清晰的看到多态的实现
	//pa->Func1();
	AFunc1Helper(pa);

	//pa->Func2();
	AFunc2Helper(pa);

	//pb->Func1();
	BFunc1Helper(pb);

	//pb->Func2();
	BFunc2Helper(pb);

	//pb->Func3();
	BFunc3Helper(pb);

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值