鉴于以下代码,我无法进行编译。
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)();
没有一个工作。
最佳答案
正确的语法是
return (obj.*KM)();
关于c++ - 从成员函数模板参数调用成员函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2290299/