鉴于以下我无法编译的代码。
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)();
这些都没有奏效。