说我有:
template < typename T >
class ClassA
{
void doTheStuff (T const * t);
};
template < typename T >
class ClassB
{
// Some stuff...
};
我想专门针对ClassB模板的所有实例使用doTheStuff方法,如下所示:
template <typename T>
void ClassA< ClassB< T > >::doTheStuff (ClassB< T > const * t)
{
// Stuff done in the same way for all ClassB< T > classes
}
但是,当然,这不起作用.羞耻的是我不知道我怎么能这样做.
使用visual studio的编译器,我得到:
error C2244: 'ClassA<T>::doTheStuff' : unable to match function definition to an existing declaration
see declaration of 'ClassA<T>::doTheStuff'
definition
'void ClassA<ClassB<T>>::doTheStuff(const ClassB<T> *)'
existing declarations
'void ClassA<T>::doTheStuff(const T *)'
我发现这篇文章:Templated class specialization where template argument is a template
所以我按照建议尝试了完整的类专业化,但它也不起作用:
template <>
template < typename U >
class ClassA< ClassB< U > >
{
public:
void doTheStuff (ClassB< U > const * b)
{
// Stuff done in the same way for all ClassB< T > classes
}
};
视觉说:
error C2910: 'ClassA<ClassB<U>>' : cannot be explicitly specialized
欢迎任何帮助!
Floof.
解决方法:
删除额外的模板<>它会起作用.