18

我编写了一个小程序,我试图将指向类的成员函数的指针传递给另一个函数。你能帮我吗,我哪里错了..?

#include<iostream>
using namespace std;
class test{
public:
        typedef void (*callback_func_ptr)();
        callback_func_ptr cb_func;

        void get_pc();

        void set_cb_ptr(void * ptr);

        void call_cb_func();
};
void test::get_pc(){
         cout << "PC" << endl;
}
void test::set_cb_ptr( void *ptr){
        cb_func = (test::callback_func_ptr)ptr;
}
void test::call_cb_func(){
           cb_func();
}
int main(){
        test t1;
            t1.set_cb_ptr((void *)(&t1.get_pc));
        return 0;
}

尝试编译时出现以下错误。

error C2276: '&' : illegal operation on bound member function expression
4

2 回答 2

21

您不能将函数指针强制转换为void*.

如果希望函数指针指向成员函数,则必须将类型声明为

ReturnType (ClassType::*)(ParameterTypes...)

此外,您不能声明指向绑定成员函数的函数指针,例如

func_ptr p = &t1.get_pc // Error

相反,您必须获得这样的地址:

func_ptr p = &test::get_pc // Ok, using class scope.

最后,当您调用指向成员函数的函数指针时,您必须使用该函数所属的类的实例来调用它。例如:

(this->*cb_func)(); // Call function via pointer to current instance.

这是应用了所有更改的完整示例:

#include <iostream>

class test {
public:
    typedef void (test::*callback_func_ptr)();
    callback_func_ptr cb_func;
    void get_pc();
    void set_cb_ptr(callback_func_ptr ptr);
    void call_cb_func();
};

void test::get_pc() {
    std::cout << "PC" << std::endl;
}

void test::set_cb_ptr(callback_func_ptr ptr) {
    cb_func = ptr;
}

void test::call_cb_func() {
    (this->*cb_func)();
}

int main() {
    test t1;
    t1.set_cb_ptr(&test::get_pc);
    t1.call_cb_func();
}
于 2013-08-09T17:21:26.950 回答
3

除了 Snps 的答案,您还可以使用 C++11 中的函数包装器来存储 lambda 函数:

#include <iostream>
#include <functional>

class test
{
  public:
   std::function<void ()> Func;
   void get_pc();
   void call_cb_func();
   void set_func(std::function<void ()> func);
};

void test::get_pc()
{
  std::cout << "PC" << std::endl;
}

void test::call_cb_func()
{
  Func();
}

void test::set_func(std::function<void ()> func)
{
  Func = func;
}

int main() {
  test t1;
  t1.set_func([&](){ t1.get_pc(); });
  t1.call_cb_func();
}
于 2016-11-03T09:14:16.260 回答