gpt4 book ai didi

c++ - 将对象方法传递给变量

转载 作者:行者123 更新时间:2023-11-28 01:49:43 26 4
gpt4 key购买 nike

如何调用传递给变量的对象方法?

class A {
public:
inline int f() {
return 1;
}
};


int main() {
A a;

int (A::*y)(); //'y' must be a method of 'A' class that returns 'int'
y = &A::f; //bind 'f' method

*y(); //how to invoke???
}

其他thread将方法绑定(bind)到对象字段并以这种方式调用 (a.*(a.x))(),但我找不到对简单变量执行类似操作的方法。

最佳答案

只需执行 (a.*y)();。您需要额外的括号使编译器在进行函数调用之前解析指向成员的指针。参见 operator precedence :

class A {
public:
inline int f() {
return 1;
}
};


int main() {
A a;

int (A::*y)(); //'y' must be a method of 'A' class that returns 'int'
y = &A::f; //bind 'f' method

(a.*y)();
}

Demo

关于c++ - 将对象方法传递给变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43460715/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com