我对嵌套模板及其模板专业化有疑问。给定以下类:
一个小模板类
template<class U>
class T {
public:
T(){}
virtual ~T (){}
};
还有某种嵌套模板
template<typename T, template<typename> class U>
class A {
public:
void foo()
{
std::cerr << "A generic foo";
}
};
还有一个小的 main.cpp
int main(int argc, const char *argv[])
{
A<int,T> *a = new A<int,T>;
a->foo();
//This wont work:
A<double,T*> *b = new A<double,T*>;
b->foo();
return 0;
}
如果 U 是指针,现在我需要专门化:
A<double,T*> *b = new A<double,T*>;
b->foo();
如何做到这一点?我试过类似的东西:
template<typename T, template<typename> class U>
class A< T, U* >
{
public:
void foo()
{
std::cerr << "A specialized foo";
}
};
但它只是解决
A.h:18:16: Error: Templateargument 2 is invalid