1

我有一个Foo包含 a的 c++ 类型std::function<void()> funcs,它已成功绑定到 python。我的目标是在 python 中定义函数并将它们添加到这种类型,然后返回一个实例。在 c++ 中,我使用 pybind 来获取这种类型的实例。但是,当我尝试调用其中一个函数时,我的程序会出现段错误。

class Foo
{
    void addFunc(std::function<void()> _func)
    {
      funcs.push_back(_func);
    }

    void call(int _index)
    {
      funcs[_index]();
    }

private:
    std::vector<std::function<void()>> funcs;
}

namespace py = pybind11;

PYBIND11_MODULE(foo, m) 
{
    py::class_<Foo>(m, "foo")
        .def(py::init<int, int>())
        .def("addFunc", &Foo::addFunc)
        .def("call", &Foo::call);
}

后来在c++中

py::scoped_interpreter python;
auto module = py::module::import("foo_module");
auto func = module.attr("create_foo");
auto result = func();
//This works!
result.attr("call")(0);
Foo* blah = result.cast<Foo*>();
//This seg-faults!
blah->call(0);

我的python模块有这个:

def newFunc():
    print "working!"

def create_foo():

  temp = foo.Foo(0, 100)
  temp.addFunc(newFunc)
  return temp

我不确定为什么函数没有正确地转换回 C++?

4

1 回答 1

0

我不得不将它移到py::scoped_interpreter python;更高的范围,因为调用函数时它不在范围内

于 2017-11-08T20:21:47.287 回答