使用此设置:
template<int N>
struct Base {
void foo();
};
class Derived : Base<1> {
static void bar(Derived *d) {
//No syntax errors here
d->Base<1>::foo();
}
};
一切正常。但是,对于这个例子:
template<class E>
struct Base {
void foo();
};
template<class E>
class Derived : Base<E> {
static void bar(Derived<E> *d) {
//syntax errors here
d->Base<E>::foo();
}
};
我得到:
error: expected primary-expression before '>' token
error: '::foo' has not been declared
有什么不同?为什么第二个会导致语法错误?