C++ 覆盖/重载问题

Posted

技术标签:

【中文标题】C++ 覆盖/重载问题【英文标题】:C++ override/overload problem 【发布时间】:2010-12-01 20:41:17 【问题描述】:

我在 C++ 中遇到了一个问题:

#include <iostream>

class A

protected:
  void some_func(const unsigned int& param1)
  
    std::cout << "A::some_func(" << param1 << ")" << std::endl;
  
public:
  virtual ~A() 
  virtual void some_func(const unsigned int& param1, const char*)
  
    some_func(param1);
  
;

class B : public A

public:
  virtual ~B() 
  virtual void some_func(const unsigned int& param1, const char*)
  
    some_func(param1);
  
;

int main(int, char**)

  A* t = new B();
  t->some_func(21, "some char*");
  return 0;

我正在使用 g++ 4.0.1 并且编译错误:

$ g++ -W -Wall -Werror test.cc
test.cc: In member function ‘virtual void B::some_func(const unsigned int&, const char*)’:
test.cc:24: error: no matching function for call to ‘B::some_func(const unsigned int&)’
test.cc:22: note: candidates are: virtual void B::some_func(const unsigned int&, const char*)

为什么我必须指定 B 类中 some_func(param1) 的调用是 A::some_func(param1) ?是 g++ 错误还是来自 g++ 的随机消息,以防止我看不到的特殊情况?

【问题讨论】:

这很奇怪。受保护的基类函数应该对子类可见,无论是虚拟的、重载的还是不可见的。 【参考方案1】:

问题在于,在派生类中,您将受保护的方法隐藏在基类中。您可以做几件事,要么完全限定派生对象中的受保护方法,要么使用 using 指令将该方法带入作用域:

class B : public A

protected:
  using A::some_func; // bring A::some_func overloads into B
public:
  virtual ~B() 
  virtual void some_func(const unsigned int& param1, const char*)
  
    A::some_func(param1); // or fully qualify the call
  
;

【讨论】:

我为什么要隐藏它?我只是覆盖第二个。通常,g++ 必须在 B 的 vtable 中保留重载 init 的签名,但事实并非如此。为什么它不保留每个方法的签名?为什么它会松开重载的(我只是重新定义其中之一)? 当你在派生类中定义一个带有名字的方法时,它会在层次结构中隐藏所有其他同名的方法。当编译器发现您通过静态类型 B 的引用调用 some_func 时,它会尝试将其与 B 本身内出现的所有 some_func 匹配,并且不会尝试升级层次结构以在基类中查找可能的匹配项。 这是避免大 vtable 大小的默认 g++ 行为,还是 C++ 定义和每个编译器都会犯同样的错误?因为通常情况下,如果它不是 A 类中的重载(假设是另一个方法名称),则签名将被复制到 B 类 vtable 中。 它在 C++ 符号查找规则中。所有编译器都应该以这种方式运行。有些甚至发出警告。 我的错我看到了 (10.2)。无论如何,我第二次不好,它已经在那里讨论过:***.com/questions/411103/…

以上是关于C++ 覆盖/重载问题的主要内容,如果未能解决你的问题,请参考以下文章

C++ 多态性和重载?

c++重载覆盖和隐藏

c++中重载,重写,覆盖

C++中成员函数的重载覆盖和隐藏的区别

C++中重载重写(覆盖)和隐藏的区别

C++覆盖,隐藏,重载