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++ 继承类中函数重载的问题


基础教程推荐
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 这个宏可以转换成函数吗? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01