从结构调用C成员函数指针

前端之家收集整理的这篇文章主要介绍了从结构调用C成员函数指针前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经找到了有关调用C成员函数指针和在结构中调用指针的信息,但我需要调用一个存在于结构内部的成员函数指针,并且我无法使语法正确.我在MyClass类的方法中有以下代码段:
void MyClass::run() {
    struct {
        int (MyClass::*command)(int a,int b);
        int id;
    } functionMap[] = {
        {&MyClass::commandRead,1},{&MyClass::commandWrite,2},};

    (functionMap[0].MyClass::*command)(x,y);
}

int MyClass::commandRead(int a,int b) {
    ...
}

int MyClass::commandWrite(int a,int b) {
    ...
}

这给了我:

error: expected unqualified-id before '*' token
error: 'command' was not declared in this scope
(referring to the line '(functionMap[0].MyClass::*command)(x,y);')

移动这些括号导致语法错误,建议使用.*或 – > *这两种情况都不起作用.有谁知道正确的语法?

解决方法

使用:
(this->*functionMap[0].command)(x,y);

经过测试和编译;)

原文链接:https://www.f2er.com/c/116723.html

猜你在找的C&C++相关文章