码迷,mamicode.com
首页 > 编程语言 > 详细

C++继承中的同名成员处理

时间:2020-03-13 20:24:48      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:out   system   iostream   str   ace   同名成员函数   main   版本   name   

#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;
    s.func();
    s.Base::func(); 
    //s.func(100);报错,子类的同名成员函数隐藏父类的所有同名成员函数,包括重载版本
    s.Base::func(100);
}
int main() {
    test01();
    system("pause");
    return 0;
}

 

C++继承中的同名成员处理

标签:out   system   iostream   str   ace   同名成员函数   main   版本   name   

原文地址:https://www.cnblogs.com/lyt888/p/12488665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!