using namespace std;..._派生类调用基类成员函数">
当前位置:   article > 正文

c++ 继承与派生(1)——在派生类的函数中调用基类的成员函数_派生类调用基类成员函数

派生类调用基类成员函数

题目

定义一个基类Base,有两个公共成员函数fun1()和fun2(),如果公有派生出Derived类,Derived类中重载了基类的成员函数fun1(),没有重载基类的成员函数fun2(),如何在派生类的函数中调用基类的成员函数fn1(),fn2()?

源代码

#include "stdafx.h"
#include<iostream>
using namespace std;

class Base{
public:
	void fun1(){ cout << "fun1"<<endl; };
	void fun2(){ cout << "fun2"<<endl; };
};

class Derived:public Base{
public:
	void fun1();
	void fun3(){
		Base::fun1();
		fun2();
	}
};

int _tmain(int argc, _TCHAR* argv[])
{
	Derived d;
	d.fun3();
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

运行结果

在这里插入图片描述

解析

已知在Derived类中重新定义了基类的成员函数fun1(),而没有重新定义基类的成员函数fun2(),则在调用fun1时可通过Base::fun1();方法来调用,而调用函数fun2时则可以直接在派生类的公有成员函数中调用基类的公有成员函数即:fun2().

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/106090
推荐阅读
相关标签
  

闽ICP备14008679号