无法访问模板基类中的变量

时间:2015-07-05 15:20:14

标签: c++ templates inheritance g++

我想访问父类中的受保护变量,我有以下代码,它编译得很好:

class Base
{
protected:
    int a;
};

class Child : protected Base
{
public:
    int b;
    void foo(){
        b = a;
    }
};

int main() {
    Child c;
    c.foo();
}

好的,现在我想把所有东西都模板化。我将代码更改为以下

template<typename T>
class Base
{
protected:
    int a;
};

template <typename T>
class Child : protected Base<T>
{
public:
    int b;
    void foo(){
        b = a;
    }
};

int main() {
    Child<int> c;
    c.foo();
}

得到错误:

test.cpp: In member function ‘void Child<T>::foo()’:
test.cpp:14:17: error: ‘a’ was not declared in this scope
             b = a;
                 ^

这是正确的行为吗?有什么区别?

我使用g ++ 4.9.1

1 个答案:

答案 0 :(得分:4)

呵呵,我最喜欢的C ++古怪!

这将有效:

void foo()
{
   b = this->a;
//     ^^^^^^
}

不合格的查找在这里不起作用,因为基础是模板。 That's just the way it is,并提供有关如何翻译C ++程序的高度技术细节。