当使用可变参数模板进行模板化时,我正在努力处理成员函数的特化。
以下示例专门介绍整个类,它可以正常工作:
template<typename... Args>
class C;
template<class T, typename... Args>
class C<T, Args...> { };
template<>
class C<> { };
int main() {
C<int, double> c{};
}
以下内容没有,即使其背后的想法与上面的想法完全相同:
class F {
template<typename... Args>
void f();
};
template<class T, typename... Args>
void F::f<T, Args...>() { }
int main() {
}
我收到以下错误,我不明白它是由于:
main.cpp:7:23: error: non-type partial specialization ‘f<T, Args ...>’ is not allowed
void F::f<T, Args...>() { }
^
main.cpp:7:6: error: prototype for ‘void F::f()’ does not match any in class ‘F’
void F::f<T, Args...>() { }
^
main.cpp:3:10: error: candidate is: template<class ... Args> void F::f()
void f();
^
在专门化功能模板时是否有一些我不知道的限制?
G ++版本是: g ++(Debian 5.2.1-23)5.2.1 20151028
修改
顺便说一句,我从实际代码中得到的实际问题是:
non-class, non-variable partial specialization ‘executeCommand<T, Args ...>’ is not allowed
无论如何,缩减的例子与真实的例子类似。我希望这些错误并非完全不相关。