我遇到了一个 C++ 模板难题。我试图将它削减到最低限度,现在我什至不确定我想要做的事情是否可行。看看下面的代码(在一些 .h 文件中)。
template<typename T>
class A
{
public:
template<typename S>
void f(S x);
};
class B1 { };
template<typename S>
class B2 { };
//This one works:
template<>
template<typename S>
void A<B1>::f(S x)
{
}
//This one does not work:
template<>
template<typename S>
void A<B2<S>>::f(S x)
{
}
在我的main
函数中,我有这样的东西:
//This one works:
A<B1> first;
first.f<int>(5);
//This one does not work:
A<B2<int>> second;
second.f<int>(5);
由于第二部分,我收到的错误消息是
error C3860: template argument list following class
template name must list parameters in the
order used in template parameter list
error C3855: 'A<T>': template parameter 'T' is
incompatible with the declaration
知道问题是什么吗?
编辑
为了使问题更具体,这是我的动机。我希望上面的函数对、和f
有专门化,其中 中的类型仍然未绑定。T=std::tuple<T1, T2>
T=std::tuple<T1, T2, T3>
T=std::tuple<T1, T2, T3, T4>
tuple