#include<iostream>
using namespace std;
//继承中同名成员处理
class Base
{
public:
Base() {
m_A = 100;
}
void func()
{
cout << "Base-func()调用" << endl;
}
void func(int a)
{
cout << "Base-func(int a)调用" << endl;
}
int m_A;
};
class Son :public Base
{
public:
Son() {
m_A = 200;
}
void func() {
cout << "Son-func()调用" << endl;
}
int m_A;
};
//同名成员属性处理
void test01()
{
Son s;
cout << "Son m_A=" << s.m_A << endl;
cout << "Base m_A" << s.Base::m_A << endl;
}
//同名成员函数处理
void test02()
{
Son s;
s.func();//直接调用 调用是子类中的同名成员
s.Base::func();//调用父类中同名成员
//s.func(100); //如果子类中出现和父类同名的成员函数,子类的同名成员会隐藏掉父类中所有同名成员函数(包含重载函数)
//如果想访问到父类中被隐藏的同名成员函数,需要加作用域
s.Base::func(100);
}
int main()
{
test01();
test02();
return 0;
}
类继承中的同名成员处理
最新推荐文章于 2024-11-08 23:39:16 发布