我目前正在重构一些代码,用两个模板参数显式地专门化类模板的成员函数。
template <class S, class T>
class Foo
{
void bar();
};
template <class S, class T>
void Foo<S, T>::bar()
{ /* Generic stuff */ }
template <>
void Foo<SomeType, SomeType>::bar()
{ /* Some special function */ }
现在我添加了更多的模板参数,所以类现在看起来是这样的:
template <class S, class EXTRA0, class T, class EXTRA1>
class Foo
{
void bar();
};
这两个额外的参数只是将typedef添加到我的类中,所以运行时功能并没有真正改变。有什么办法可以保留bar的(现在部分)专业化实现吗?我似乎想不出它的语法,我有一种预感,这可能是不可能的。
编辑:我正在寻找以下内容:
template <class EXTRA0, class EXTRA1>
void foo<SomeType, EXTRA0, Sometype, EXTRA1>::bar()
{
/* specialized implementation */
}
它似乎无法编译。。