为什么在涉及模板类时,派生类无法访问基函数

时间:2012-04-25 08:25:40

标签: c++ templates

以下代码给出了编译错误:

template <typename T>
class Base
{
    public:
    void bar(){};
};

template <typename T>
class Derived : public Base<T>
{
    public:
    void foo() { bar(); }   //Error
};

int main()
{
    Derived *b = new Derived;
    b->foo();
}

错误

Line 12: error: there are no arguments to 'bar' that depend on a template parameter, so a declaration of 'bar' must be available

为什么会出现这个错误?

2 个答案:

答案 0 :(得分:14)

名称foo()不依赖于Derived的任何模板参数 - 它是非依赖名称。另一方面,找到foo()的基类 - Base<T> - 取决于Derived的模板参数之一(即{{1}这是一个依赖基类。查找非依赖名称时,C ++不会查找依赖的基类。

要解决此问题,您需要将Tbar()的来电限定为Derived::foo()this->bar()

这个C ++ FAQ项很好地解释了它:见http://www.parashift.com/c++-faq-lite/templates.html#faq-35.19

答案 1 :(得分:0)

您提供的代码在您指明的行上没有构建错误。它有一个在这里:

Derived *b = new Derived;

应该是:

Derived<int> *b = new Derived<int>();

(或使用您想要的任何类型而不是int。)