摘要: Pybind简介 pybind11 是一个用于将 C++ 代码与 Python 代码绑定的库。它使得你能够轻松地将 C++ 编写的函数、类、以及数据结构暴露给 Python,从而在 Python 中使用 C++ 代码。这通常用于加速性能关键的部分,或者利用现有的 C++ 库,同时保留 Python 阅读全文
posted @ 2024-12-15 21:03 Gold_stein 阅读(311) 评论(0) 推荐(0)
摘要: C++ typeid输出信息格式 用这段程序做演示: #include <iostream> #include <typeinfo> class Base { virtual void dummy() {} }; class Derived : public Base { /* ... */ }; 阅读全文
posted @ 2024-12-15 15:26 Gold_stein 阅读(32) 评论(0) 推荐(0)