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++ 继承类中函数重载的问题
基础教程推荐
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++,'if' 表达式中的变量声明 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04