2

说我有:

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 *)'

我找到了这篇文章:模板类专业化,其中模板参数是模板

所以我按照建议尝试了全类专业化,但它也不起作用:

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

欢迎任何帮助!

浮法。

4

1 回答 1

2

删除多余的template<>,它将起作用。

于 2012-12-20T10:53:23.773 回答