从成员函数模板参数调用成员函数

时间:2010-02-18 16:38:34

标签: c++ templates function-pointers member-function-pointers pointer-to-member

鉴于以下代码我无法编译。

    template < typename OT, typename KT, KT (OT::* KM)() const >
    class X
    {
    public:
        KT mfn( const OT & obj )
        {
            return obj.*(KM)();    // Error here.
        }
    };

    class O
    {
    public:
        int func() const
        {
            return 3;
        }
    };

    int main( int c, char *v[] )
    {
        int a = 100;

        X<  O, int, &O::func > x;

        O o;

        std::cout << x.mfn( o ) << std::endl;
}

我收到了关联错误消息

error: must use '.*' or '->*' to call pointer-to-member function in '&O::func (...)'

我以为我在使用。*但我显然有些不对劲。

如何调用成员函数?

我试过

return obj.*(template KM)();
return obj.*template (KM)();
return obj.template *(KM)();

其中没有一个有用。

1 个答案:

答案 0 :(得分:5)

正确的语法是

return (obj.*KM)();