2

我有一个问题,奇怪的是重复出现的模板可以很好地提供帮助,但我什至无法通过一个简单的测试。

template<typename T, int _size, typename OutterT>
class Foo {

};

template<typename T>
class Bar : public Foo<T, 2, Bar> {};

//typedef Bar<float> Vec2f;


int main()
{
    return 0;
}

这会导致错误

foo.cpp:7: error: type/value mismatch at argument 3 in template parameter list for ‘template<class T, int _size, class OuterT> class Foo’
foo.cpp:7: error:   expected a type, got ‘Bar’

我错过了什么。

用 g++ 4.2.1 编译

4

1 回答 1

8
template<typename T, int _size, typename OutterT>
class Foo {

};

template<typename T>
class Bar : public Foo<T, 2, Bar<T> > {};
//                              ^^^

Bar<float> x;

由于Bar是模板,因此您必须提供模板参数以将其实例化为类。

于 2011-04-07T16:07:51.043 回答