Overriding a Base#39;s Overloaded Function in C++(在 C++ 中覆盖 Base 的重载函数)
问题描述
可能的重复:
C++ 重载解析
我遇到了一个问题,在我的类覆盖其基类的函数后,所有重载的函数版本都被隐藏了.这是设计使然还是我做错了什么?
I ran into a problem where after my class overrode a function of its base class, all of the overloaded versions of the functions were then hidden. Is this by design or am I just doing something wrong?
例如
class foo
{
public:
foo(void);
~foo(void);
virtual void a(int);
virtual void a(double);
};
class bar : public foo
{
public:
bar(void);
~bar(void);
void a(int);
};
下面会给出一个编译错误,说明 bar 中没有 a(double) 函数.
the following would then give a compile error saying there is no a(double) function in bar.
main()
{
double i = 0.0;
bar b;
b.a(i);
}
推荐答案
在类栏中,添加
using foo::a;
这是 C++ 中常见的陷阱".一旦在 a 类作用域中找到名称匹配,它就不会在继承树中进一步查找重载.通过指定 'using' 声明,您将 'a' 的所有重载从 'foo' 带入了 'bar' 的范围.然后重载正常工作.
This is a common 'gotcha' in C++. Once a name match is found in the a class scope, it doesn't look further up the inheritance tree for overloads. By specifying the 'using' declaration, you bring all of the overloads of 'a' from 'foo' into the scope of 'bar'. Then overloading works properly.
请记住,如果存在使用 'foo' 类的现有代码,其含义可能会因额外的重载而改变.或者额外的重载可能会引入歧义,并且代码将无法编译.詹姆斯·霍普金 (James Hopkin) 的回答中指出了这一点.
Keep in mind that if there is existing code using the 'foo' class, its meaning could be changed by the additional overloads. Or the additional overloads could introduce ambiguity and and the code will fail to compile. This is pointed out in James Hopkin's answer.
这篇关于在 C++ 中覆盖 Base 的重载函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中覆盖 Base 的重载函数


基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01