gpt4 book ai didi

python - pybind11::object in pybind11::dict

转载 作者:搜寻专家 更新时间:2023-10-31 01:27:11 25 4
gpt4 key购买 nike

我尝试将 python 解释器嵌入到我的 C++17 应用程序中。我必须从 python 访问 C++ 世界中的 Foo 对象实例。

所以我想出了下面的代码:

#include <pybind11/embed.h>
#include <pybind11/pybind11.h>
#include <iostream>

namespace py = pybind11;
using namespace py::literals;

class Foo
{
public:
Foo() : v(42) {}
int get() const { return v; }
void set(int x) { v = x; }
private:
int v;
};

PYBIND11_EMBEDDED_MODULE(my_module, m) {
py::class_<Foo>(m, "Foo")
.def(py::init<>())
.def("get", &Foo::get)
.def("set", &Foo::set);
}

int main()
{
py::scoped_interpreter guard{};
using namespace py::literals;

py::object py_foo = py::cast(Foo());
auto locals = py::dict(
"foo"_a = py_foo // (line of evil)
);

// CRASH!
try {
py::exec("print(foo.get())", py::globals(), locals);
return EXIT_SUCCESS;
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
}

运行时崩溃:无法将“object”类型的调用参数“foo”转换为 Python 对象

文档仅展示了如何将 intstring 插入到 py::dict 中。

我猜 pybind11 知道 Foo,因为当我删除行 (line of evil) 并将代码替换为 from my_module import Foo; print(Foo().get()),它做了我期望的(但显然不是我想要的)。

那么,我做错了什么?

最佳答案

在嵌入式Python解释器中,需要先导入模块,否则Python不知道模块的存在。

py::module::import("my_module"); 添加到您的 main() 中:

int main()
{
py::scoped_interpreter guard{};

py::module::import("my_module"); // <-- Here, import the module
using namespace py::literals;

py::object py_foo = py::cast(Foo());
auto locals = py::dict(

// ....

关于python - pybind11::object in pybind11::dict,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53830479/

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