C++ inheritance and function overriding(C++ 继承和函数覆盖)
问题描述
在C++中,基类的成员函数是否会被其同名的派生类函数覆盖,即使它的原型(参数的数量、类型和常量)不同?我想这是一个愚蠢的问题,因为许多网站都说函数原型应该是相同的;但是为什么下面的代码不能编译?我相信这是一个非常简单的继承案例.
In C++, will a member function of a base class be overridden by its derived class function of the same name, even if its prototype (parameters' count, type and constness) is different? I guess this a silly question, since many websites says that the function prototype should be the same for that to happen; but why doesn't the below code compile? It's a very simple case of inheritance, I believe.
#include <iostream>
using std::cout;
using std::endl;
class A {};
class B {};
class X
{
public:
void spray(A&)
{
cout << "Class A" << endl;
}
};
class Y : public X
{
public:
void spray(B&)
{
cout << "Class B" << endl;
}
};
int main()
{
A a;
B b;
Y y;
y.spray(a);
y.spray(b);
return 0;
}
GCC 抛出
error: no matching function for call to `Y::spray(A&)'
note: candidates are: void Y::spray(B&)
推荐答案
用来描述这个的术语是隐藏",而不是覆盖".默认情况下,派生类的成员将使具有相同名称的基类的任何成员无法访问,无论它们是否具有相同的签名.如果要访问基类成员,可以使用 using
声明将它们拉入派生类.在这种情况下,将以下内容添加到 class Y
:
The term used to describe this is "hiding", rather than "overriding". A member of a derived class will, by default, make any members of base classes with the same name inaccessible, whether or not they have the same signature. If you want to access the base class members, you can pull them into the derived class with a using
declaration. In this case, add the following to class Y
:
using X::spray;
这篇关于C++ 继承和函数覆盖的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 继承和函数覆盖
- 近似搜索的工作原理 2021-01-01
- 静态初始化顺序失败 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- STL 中有 dereference_iterator 吗? 2022-01-01
- C++ 协变模板 2021-01-01
- 从python回调到c++的选项 2022-11-16
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01