c++ issue with function overloading in an inherited class(c++ 继承类中函数重载的问题)
问题描述
这可能是一个菜鸟问题,抱歉.我最近在尝试处理 C++ 中的一些高级内容、函数重载和继承时遇到了一个奇怪的问题.
This is possibly a noob question, sorry about that. I faced with a weird issue recently when trying to mess around with some high level stuff in c++, function overloading and inheritance.
我举一个简单的例子,只是为了说明问题;
I'll show a simple example, just to demonstrate the problem;
有两个类,classA 和classB,如下所示;
There are two classes, classA and classB, as below;
class classA{
public:
void func(char[]){};
};
class classB:public classA{
public:
void func(int){};
};
据我所知 classB 现在应该拥有两个 func(..) 函数,由于不同的参数而重载.
According to what i know classB should now posses two func(..) functions, overloaded due to different arguments.
但是当在主方法中尝试这个时;
But when trying this in the main method;
int main(){
int a;
char b[20];
classB objB;
objB.func(a); //this one is fine
objB.func(b); //here's the problem!
return 0;
}
它给出错误,因为方法 void func(char[]){}; 位于超类 classA 中,在派生类中不可见,classB.
It gives errors as the method void func(char[]){}; which is in the super class, classA, is not visible int the derived class, classB.
我怎样才能克服这个问题?这不是 C++ 中的重载方式吗?我是 C++ 新手,但在 Java 中,我知道我可以使用这样的东西.
How can I overcome this? isn't this how overloading works in c++? I'm new to c++ but in Java, i know I can make use of something like this.
虽然我已经找到了这个线程,它询问了类似的问题,我认为这两种情况是不同的.
Though I've already found this thread which asks about a similar issues, I think the two cases are different.
推荐答案
您只需要一个 using:
class classB:public classA{
public:
using classA::func;
void func(int){};
};
它不会在基类中搜索 func,因为它已经在派生类中找到了.using 语句将另一个重载带入同一作用域,以便它可以参与重载解析.
It doesn't search the base class for func because it already found one in the derived class. The using statement brings the other overload into the same scope so that it can participate in overload resolution.
这篇关于c++ 继承类中函数重载的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:c++ 继承类中函数重载的问题
基础教程推荐
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- CString 到 char* 2021-01-01
