C ++:从模板参数继承

时间:2014-09-11 17:56:04

标签: c++ templates inheritance struct

在下一个代码示例中:

#include <iostream>
using namespace std;
int f() {
    return 0;
}
struct A {
    int f()    {
        return 1; }
};
template<class T>
struct C : public T {
    C() {
        cout << f() << endl;
    } };
int main() {
    C<A> c; // prints 0
    return 0;
}

如果我将继承更改为非模板,如下所示: struct C : public A

然后打印&#34; 1&#34;而不是0。

为什么?

1 个答案:

答案 0 :(得分:8)

<{1>}中的

f()是一个非独立的名称,因此名称查找在模板定义时(在f已知之前)发生,并将其绑定到T。如果您希望它调用成员函数f,那么使用::f使其成为从属名称:

this