Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很长的 Python 中 C 结构的网络类定义列表。在 C++ 中使用它们的最佳方式是什么?
有没有我可以使用的解析器来导出 C++ 类?像 Boost 这样的框架包装器是否足够快以将其用于 tcp 连接处理?其他建议?
您可以将 Python 解析器嵌入到 C++ 程序中,以便直接加载 Python 类,或者编写 Python 程序来生成这些 Python 类的 C++ 等效项。在此处阅读有关嵌入 Python 3.x或 2.x的信息。