我试图绑定(bind)一个静态函数,该函数返回指向另一个类的shared_ptr。
这是示例代码
class Example {
public:
Example() {}
~Example() {}
};
class ABC {
public:
static std::shared_ptr<Example> get_example() {std::make_shared<Example();}
};
void init_abc(py::module & m) {
py::class_<Example>(m, "Example")
.def(py::init<>());
py::class_<ABC>(m, "ABC")
.def_static("get_example", &ABC::get_example);
}
这是python面
example = my_module.ABC.get_example()
但是,python端抛出了分段错误。
任何的想法?
最佳答案
您的代码中有一些遗漏的位,例如>
。这是工作示例:
class Example {
public:
Example() {}
~Example() {}
};
class ABC {
public:
static std::shared_ptr<Example> get_example() { return std::make_shared<Example>();}
};
接下来,在包装shared_ptr<Example>
类的位置提供其他模板参数Example
:py::class_<Example, std::shared_ptr<Example>>(m, "Example")
.def(py::init<>());
py::class_<ABC>(m, "ABC")
.def_static("get_example", &ABC::get_example);
这样shared_ptr<Example>
将被正确处理。关于python - 无法从pybind11中的静态函数返回shared_ptr,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56017998/