我不知道这是否可行。由于我的一个函数需要将一个函数对象传递给c库函数,并且只能获取函数指针。
我创建了一个演示程序,我认为这足以说明我的目的:
#include <iostream>
#include <functional>
class Test;
void init_class(std::function<int (int)> fn) {
int (*new_fn)(int) = nullptr; // I can't assign fn to new_fn either <<<<<<<<<<<<
new_fn = fn; // this complains <<<<<<<<<<<<<<<<<<<<<<<<<
std::cout << new_fn(199) << std::endl;
}
class Test {
public:
explicit Test()
: n_(199) {
}
~Test() noexcept {}
int calculate(int val) {
return n_ + val;
}
void run() {
std::function<int (int)> fn =
std::bind(&Test::calculate, this, std::placeholders::_1);
init_class(fn);
}
private:
int n_;
};
void test() {
Test a;
a.run();
}
int main(int argc, const char *argv[]) {
test();
return 0;
}
答案 0 :(得分:1)
我有同样的问题 - 看下面的链接,有一些有趣的答案:
Convert C++ function pointer to c function pointer
简而言之,您无法为非静态c ++成员函数指定函数指针。您可以做的是创建一个静态或全局函数,使用实例参数进行调用,查看上面的链接以获取更多详细信息。