我有一个问题,奇怪的重复模板可以帮助很好,但我甚至无法通过一个简单的测试。
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编译
答案 0 :(得分: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
是模板,因此必须提供模板参数以将其实例化为类。