gpt4 book ai didi

python - 用 pybind11 包装 C++ 抽象类时出错

转载 作者:行者123 更新时间:2023-12-04 12:34:31 29 4
gpt4 key购买 nike

我正在尝试做一个简单的例子来用 pybind 包装一个抽象的 C++ 类。代码是:

#include <pybind11/pybind11.h>
#include <ostream>
#include <iostream>
namespace py = pybind11;
using namespace std;

class Base
{
public:
virtual void test() = 0;

};
class Derived: public Base
{
public:
void test() {cout << "Test";}
};


PYBIND11_MODULE(example,m) {
py::class_<Base, Derived>(m, "Base")
.def(py::init<>())
.def("test", &Derived::test);
}
当我运行以下命令时
c++ -O3 -Wall -shared -std=c++11 -fPIC `python3 -m pybind11 --includes` abstract_test.cpp -o example`python3-config --extension-suffix`\n
我收到错误:
In file included from abstrakt_test.cpp:1:
/home/anaconda3/envs/pybind/lib/python3.8/site-packages/pybind11/include/pybind11/pybind11.h: In instantiation of ‘Return (Derived::* pybind11::method_adaptor(Return (Class::*)(Args ...)))(Args ...) [with Derived = Base; Return = void; Class = Derived; Args = {}]’:
/home/anaconda3/envs/pybind/lib/python3.8/site-packages/pybind11/include/pybind11/pybind11.h:1118:45: required from ‘pybind11::class_<type_, options>& pybind11::class_<type_, options>::def(const char*, Func&&, const Extra& ...) [with Func = void (Derived::*)(); Extra = {}; type_ = Base; options = {Derived}]’
abstrakt_test.cpp:23:36: required from here
/home/anaconda3/envs/pybind/lib/python3.8/site-packages/pybind11/include/pybind11/pybind11.h:1032:19: error: static assertion failed: Cannot bind an inaccessible base class method; use a lambda definition instead
static_assert(detail::is_accessible_base_of<Class, Derived>::value,
^~~~~~
/home/anaconda3/envs/pybind/lib/python3.8/site-packages/pybind11/include/pybind11/pybind11.h:1034:12: error: cannot convert ‘void (Derived::*)()’ to ‘void (Base::*)()’ in return
return pmf;
^~~

最佳答案

您需要“包装”Base以及。否则,您将在导入时遇到以下异常:ImportError: generic_type: type "Derived" referenced unknown base type "Base"此外,包装订单 Derived是错的:py::class_<Derived, Base>(m, "Derived")完整示例:

PYBIND11_MODULE(example,m) {
py::class_<Base>(m, "Base");

py::class_<Derived, Base>(m, "Derived")
.def(py::init<>())
.def("test", &Derived::test);
}

关于python - 用 pybind11 包装 C++ 抽象类时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62854830/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com