C ++:通过指针调用成员函数

时间:2013-05-27 18:13:16

标签: c++ function-pointers

我有使用指向成员函数的指针的示例代码,我想在运行时更改它,但我无法使其工作。我已经尝试this->*_currentPtr(4,5) (*this)._currentPtr(4, 5)了。在同一个类中调用指向方法的正确方法是什么?

错误: 表达式必须具有(指针指向)功能类型

#include <iostream>
#include <cstdlib>

class A {

public:

    void setPtr(int v);
    void useFoo();

private:
    typedef int (A::*fooPtr)(int a, int b);

    fooPtr _currentPtr;

    int foo1(int a, int b);
    int foo2(int a, int b);
};

void A::setPtr(int v){
    if(v == 1){
        _currentPtr = foo1;
    } else {
        _currentPtr = foo2;
    }
}

void A::useFoo(){

    //std::cout << this->*_currentPtr(4,5); // ERROR
}

int A::foo1(int a, int b){
    return a - b;
}

int A::foo2(int a, int b){
    return a + b;
}

int main(){

    A obj;

    obj.setPtr(1);
    obj.useFoo();

    return 0;
}

1 个答案:

答案 0 :(得分:23)

您需要告诉编译器foo来自哪个类(否则它认为它们是来自全局范围的函数):

void A::setPtr(int v){
    if(v == 1){
        _currentPtr = &A::foo1;
                  //  ^^^^
    } else {
        _currentPtr = &A::foo2;
                  //  ^^^^
    }
}

你需要一组括号:

std::cout << (this->*_currentPtr)(4,5);
          // ^                  ^