我正在尝试使用带有Boost python的名为“ addTwoNumbers”的函数包装一个简单的演示类。这是头文件:

#ifndef DEMO_H_
#define DEMO_H_

#include <boost/function.hpp>

class Demo
{
public:
    Demo() {}
    virtual ~Demo() {}

    typedef void (DemoCb) (int,int,int);
    boost::function<DemoCb> onAddTwoNumbers;

    int addTwoNumbers(int x, int y);

    // Executes a callback within a thread not controlled by the caller.
    void addTwoNumbersAsync(int x, int y, boost::function<DemoCb> callback);

};

#endif /* DEMO_H_ */


这是包装:

#include <boost/python.hpp>
#include "../demo.h"
using namespace boost::python;

// Create a python module using boost. The name 'demo' must match the name in the makefile
BOOST_PYTHON_MODULE(python_wrap_demo) {
    // Wrapping the addTwoNumbers function:
    class_<Demo>("Demo", init<>())
        .def("addTwoNumbers", Demo::addTwoNumbers)
    ;
}


我将其用于类似的功能,该功能未包装在类中。为什么现在出现此错误?

最佳答案

我不熟悉boost::python,但我相信您只需要&即可传递成员.def("addTwoNumbers", &Demo::addTwoNumbers)的地址。非成员函数和静态成员函数可以隐式转换为函数指针,但是非静态成员函数有所不同,您需要&传递地址。

10-08 05:39
查看更多