給定以下代碼,我無法編譯。從成員函數模板參數調用成員函數
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;
}
我得到的folling錯誤信息
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)();
無工作。
函數指針是真正可怕的野獸:( –
注意'template'只需要依賴模板和'Ø:: func'不是一個模板函數。 –