C++ 虚函数覆盖、重载

CBase类处于作用域的外层,派生类的方法对于其将是不可见的,即隐藏的。而在派生类中,如果有重载函数时,基类函数将会被隐藏,否则基类函数就不被隐藏。 

#include<iostream>
using namespace std;

//基类
class CBase
{
public:
	CBase();
	~CBase();
	virtual void Walk() { cout << "CBase:Walk" << endl; }
	virtual void Jump() { cout << "CBase:Jump" << endl; }

	void Run(int speed) { cout << "CBase:Run:" << "Speed=" << speed << endl; }
	
};

//派生
class CDerivedA : public CBase
{
public:
	CDerivedA();
	~CDerivedA();
	void Walk() { cout << "CDerivedA:Walk" << endl; }
	void Jump() { cout << "CDerivedA:Jump" << endl; }
	void Run(int speed) { cout << "CDerivedA:Run" << "Speed=" << speed << endl; }
	void Run(int speed, int direction) { cout << "CDerivedA:Run" << "Speed=" << speed << ";Direction=" << direction << endl; }
};

CBase::CBase()
{

}
CBase::~CBase()
{

}
CDerivedA::CDerivedA()
{

}
CDerivedA::~CDerivedA()
{

}

int main() 
{

	CBase *pTmp1 = new CDerivedA;
	pTmp1->Walk();
	pTmp1->Jump();
	pTmp1->Run(20);

	CDerivedA *pTmp2 = (CDerivedA*)pTmp1;
	pTmp2->Run(20, 3);//合法的
	//pTmp1->Run(20,3);//不合法
}

说明:

1. CDerived和CBase之间就是函数覆盖关系,Walk和Jump函数被派生类覆盖,输出肯定是派生类函数的输出;

2. CBase类处于作用域的外层,派生类的方法对于其将是不可见的,即隐藏的。而在派生类中,如果有重载函数时,基类函数将会被隐藏,否则基类函数就不被隐藏。

基类中void Run(int speed)与派生类中void Run(int speed)函数就是重载(overload)关系,当使用基类来调用派生类对象中重载函数,会根据其作用域来判断,如基类CBase,其作用域就是CBase这个类的大括号包含的内容,派生类CDeriverdA其作用域就是CDerivedA大括号中包含的内容。因此在使用基类调用派生类对象中的Run方法时,会执行基类的Run方法。

派生类中void Run(int speed, int direction) 是派生类中的重载方法,在基类是不能调用的。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

JoannaJuanCV

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值