gpt4 book ai didi

c++ - 在 C++ 类中将函数成员作为参数传递

转载 作者:行者123 更新时间:2023-11-30 05:19:02 25 4
gpt4 key购买 nike

在非静态类中,我可以像下面这样直接传递函数成员 rhs 吗?它报告一些错误。我也试过改成mystepper.do_step(this->rhs)还是不行。但是,如果我将 mystepper.do_step(rhs); 放在主函数中,并将 rhs 作为函数,它就可以正常工作。我该如何解决这个问题?非常感谢!

void Animal::rhs(const double x , double &dxdt , const double t) {    
dxdt = 2*t;
};

void Animal::response() {
mystepper.do_step(rhs);
}

我编写了一些极简代码来说明我之前的问题。非常感谢您的帮助!!

 #include <iostream>

using namespace std;
class ABC{
private:
int x =3;
int add2num(int a, int b){
return a+b+x;
}

int worker(int &fun(int a, int b), int a, int b){
return fun(a,b);
}
public:
int doSomething(int a, int b){
return worker(add2num, a, b);
}
};

int main() {
ABC test;
cout << test.doSomething(3,5) << endl;
return 0;
}

最佳答案

您可以使用 lambda,这样您就可以将对类方法的调用包装在一个函数中:

void  Animal::response() {    
mystepper.do_step([&](const double x , double &dxdt , const double t)
{ return rhs(x, dxdt, t); });
}

但是看看你的 rhs 函数,它很容易成为一个静态类函数(里面没有对 Animal 类成员的调用)。

关于c++ - 在 C++ 类中将函数成员作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41358286/

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