本文介绍了如何通过成员函数指针调用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想用成员函数指针做一些测试。这个代码有什么问题? bigCat。* pcat(); 语句不编译。

I'm trying to do some testing with member function pointer. What is wrong with this code? The bigCat.*pcat(); statement doesn't compile.

class cat {
public:
   void walk() {
      printf("cat is walking \n");
   }
};

int main(){
   cat bigCat;
   void (cat::*pcat)();
   pcat = &cat::walk;
   bigCat.*pcat();
}


推荐答案

需要更多的括号: / p>

More parentheses are required:

(bigCat.*pcat)();
^            ^

函数调用( c $ c>)具有比指针到成员绑定运算符(。* )更高的优先级。一元运算符的优先级高于二元运算符。

The function call (()) has higher precedence than the pointer-to-member binding operator (.*). The unary operators have higher precedence than the binary operators.

这篇关于如何通过成员函数指针调用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 19:00