3

我想使用一个库(nlopt),它有一个函数 set_min_objective,它接受一个指向数值函数 myfunc 的指针并找到它的最小值。我想创建一个包含适当初始化的成员函数的类。然后 set_min_objective 将在特定实例中找到最佳值(以下示例中的 myP)。调用顺序为:

opt.set_min_objective(myfunc, NULL);

我想使用类似的东西:

opt.set_min_objective(myP.f, NULL);

我在编译时得到的错误是:

main.cpp: In function 'int main()':
main.cpp:79:34: error: no matching function for call to 'nlopt::opt::set_min_objective(<unresolved overloaded function type>, NULL)'
../lib/nlopt.hpp:335:10: note: candidates are: void nlopt::opt::set_min_objective(double (*)(unsigned int, const double*, double*, void*), void*)
../lib/nlopt.hpp:342:10: note:                 void nlopt::opt::set_min_objective(double (*)(const std::vector<double>&, std::vector<double>&, void*), void*)
../lib/nlopt.hpp:368:10: note:                 void nlopt::opt::set_min_objective(double (*)(unsigned int, const double*, double*, void*), void*, void* (*)(void*), void* (*)(void*))

让 set_min_objective 接受 myP.f 作为指向函数的普通指针的最简单解决方案是什么?请注意,myP.f 和 myfunc 具有相同的参数和返回值类型。

谢谢,

京东

4

1 回答 1

5

你不能直接这样做。您正在尝试将指向成员函数的指针作为指向函数的指针传递。要走的路是编写一个包装函数(一个普通函数),例如,将计算委托给您的对象的成员函数,例如,一个全局对象。

编辑

实际上,您很幸运:第二个参数opt.set_min_objective是指向您的数据的指针,该指针将传递给您将指针作为第一个参数传递给的函数。这意味着您的包装函数不必使用全局对象。

class YourClass
{
public:
    double f(unsigned int i, const double*, double*, void*);
};

double wrapper(unsigned int i, const double* a, double* b, void* o) {
    // not sure what you'd need the last param for, but you say you have it...
    reinterpet_cast<YourClass*>(o)->f(i, a, b, o);
}

进而:

YourClass myP;
opt.set_min_objective(wrapper, &myP);

另一个编辑。在您之前有人遇到过类似的问题:http ://www.cplusplus.com/forum/general/73166/

于 2012-09-11T20:38:12.967 回答