使用类方法作为参数的C ++模板

时间:2014-08-03 17:55:01

标签: c++ templates

是否可以将类方法作为参数传递给模板?例如:

template<typename T, void(T::*TFun)()>
void call(T* x) {
    x->TFun();
}

struct Y {
    void foo();
};

int main() {
    Y y;
    call<Y,&Y::foo>(&y);  // should be the equivalent of y.foo()
}

如果我尝试编译以上内容,我会得到:

main.cpp: In instantiation of void call(T*) [with T = Y; void (T::* TFun)() = &Y::foo]:
main.cpp:12:23:   required from here
main.cpp:4:5: error: struct Y has no member named TFun
     x->TFun();
     ^

这是可能的吗?如果是,那么语法是什么?

1 个答案:

答案 0 :(得分:4)

这不是你如何引用指向成员的指针。您需要先取消引用它:

(x->*TFun)();

我用括号做处理运算符优先级问题。 TFun在被调用之前将被取消引用。