c++ 函数的隐藏和覆盖

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ 函数的隐藏和覆盖相关的知识,希望对你有一定的参考价值。

转自:http://bbs.csdn.net/topics/390082114

 

在看《高质量c/c++》中看到了函数的隐藏和覆盖是这么说的:

覆盖的是指子类函数覆盖基类函数
在不同的类内(分别位于子类和父类)。
同名同参。
基类的函数名前必须有virtual关键字。
隐藏指派生类的函数隐藏了基类的同名函数
如果派生类函数与基类函数同名,但参数不同,无论基类函数前是否有virtual修饰,基类函数被隐.
如果派生类函数与基类函数同名,参数也相同,但是基类函数前无virtual修饰,基类函数被隐藏。

 1 class Base
 2 {
 3 public:
 4     virtual    void f(float x){ cout << "Base::f(float) " << x << endl; }
 5     void g(float x){ cout << "Base::g(float) " << x << endl; }
 6     void h(float x){ cout << "Base::h(float) " << x << endl; }
 7 };
 8 
 9 class Derived : public Base
10 {
11 public:
12     virtual    void f(float x){ cout << "Derived::f(float) " << x << endl; }
13     void g(int x)  { cout << "Derived::g(int) " << x << endl; }
14     void h(float x){ cout << "Derived::h(float) " << x << endl; }
15 };

 

Derived::f(float x)函数覆盖了基类Base::f(float x)函数。子父类同名同参,父类有virtual关键字
Derived::g(int x)  函数隐藏了基类Base::g(float x)函数。同名不同参,无论有无virtual修饰
Derived::f(float x)函数隐藏了基类Base::f(float x)函数。同名同参,且基类无virtulal修饰

以上是关于c++ 函数的隐藏和覆盖的主要内容,如果未能解决你的问题,请参考以下文章

C++中成员函数的重载覆盖和隐藏的区别

c++重载覆盖和隐藏

C++之重载覆盖和隐藏

如何在 C++ 中模拟覆盖父函数(不隐藏)?

C++学习(四五零)重载覆盖隐藏

C++虚函数总结