概述
Pybind11
是一个用于将C++
代码与Python
绑定的轻量级头文件库,使得可以轻松地在Python
中调用C++
函数和类- 还可以让
C++
代码调用Python
的功能和库
理解
- 可以把
Pybind11
理解为一个中间层,提供了在C++
中调用Python
代码或在Python
中调用C++
代码的能力
文档
在Python中调C++
example.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
// example.cpp #include <pybind11/pybind11.h> namespace py = pybind11; // 一个简单的C++函数 int add(int i, int j) { return i + j; } // 一个C++类 class Pet { public: Pet(const std::string &name) : name(name) {} void setName(const std::string &name_) { name = name_; } std::string getName() const { return name; } private: std::string name; }; // Pybind11模块定义 PYBIND11_MODULE(example, m) { m.doc() = "pybind11 example plugin"; // 模块文档 // 绑定函数 m.def("add", &add, "A function which adds two numbers"); // 绑定类 py::class_<Pet>(m, "Pet") .def(py::init<const std::string &>()) // 构造函数 .def("setName", &Pet::setName) // 成员函数 .def("getName", &Pet::getName); // 成员函数 } |
- 编译
C++
代码
1 2 3 4 5 6 7 8 9 |
cmake_minimum_required(VERSION 3.12) project(example) set(CMAKE_CXX_STANDARD 14) find_package(pybind11 REQUIRED) add_library(example MODULE example.cpp) target_link_libraries(example PRIVATE pybind11::module) |
- 这将生成一个共享库文件
example.so
,可以在Python中导入使用
1 2 3 4 |
mkdir build cd build cmake .. make |
- 在
Python
中使用
1 2 3 4 5 6 7 8 9 10 11 |
import example # 使用绑定的函数 result = example.add(3, 4) print(result) # 输出 7 # 使用绑定的类 pet = example.Pet("Kitty") print(pet.getName()) # 输出 Kitty pet.setName("Fluffy") print(pet.getName()) # 输出 Fluffy |
在C++调Python
普通调用
- 一个名为
main.cpp
的文件
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// main.cpp #include <pybind11/embed.h> // 包含pybind11的嵌入头文件 namespace py = pybind11; int main() { py::scoped_interpreter guard{}; // 启动解释器 py::object math = py::module::import("math"); // 导入Python的math模块 py::object result = math.attr("sqrt")(16); // 调用math.sqrt(16) std::cout << "The square root of 16 is: " << result.cast<double>() << std::endl; return 0; } |
调用自定义Python脚本
- 一个
Python
脚本script.py
:
1 2 3 |
# script.py def greet(name): return f"Hello, {name}!" |
- 在
C++
中调用这个脚本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
// main.cpp #include <pybind11/embed.h> // 包含pybind11的嵌入头文件 namespace py = pybind11; int main() { py::scoped_interpreter guard{}; // 启动解释器 py::object sys = py::module::import("sys"); sys.attr("path").attr("append")("path_to_script"); // 添加Python脚本路径 py::object script = py::module::import("script"); // 导入自定义的script模块 py::object result = script.attr("greet")("World"); // 调用script.greet("World") std::cout << result.cast<std::string>() << std::endl; return 0; } |
问题
pybind11
的集成程度Pybind11
本身并不自带Python
的系统库的函数和功能
- 关于
Python
系统库或Python
的第三方库- 使用
Pybind11
在C++
代码中调用Python的系统库或第三方库时,前提是这些库在计算机上安装并且可以被Python
解释器找到和使用
- 使用
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 预处理指令记录:一07/09
- ♥ Zlib记述:一09/17
- ♥ Photoshop CEP扩展和插件开发04/27
- ♥ Soui五05/30
- ♥ Soui九07/25
- ♥ C++_运算符优先级&&相关性12/15