举例说明:
struct MyFunc {
template <size_t N>
void doIt() {
cout << N << endl;
}
};
template <typename Func>
struct Pass123ToTemplateFunc {
static void pass(Func f) {
f.doIt<123>(); // <-- Error on compile; is there a way to express this?
}
};
int main() {
Pass123ToTemplateFunc<MyFunc>::pass(MyFunc());
return 0;
}
这纯粹是语法好奇心;是否有一种方法可以在语言中表达这一点而不将参数传递给doIt
函数本身?如果没有,这没什么大不了的,我已经很清楚我可以优雅地解决它的方式,所以不需要提供替代解决方案。 (我接受&#34;没有&#34;作为答案,换句话说,如果这是真理。:-P)
答案 0 :(得分:8)
您必须告诉编译器doIt
将是一个模板:
f.template doIt<123>();