將C 介面的Python 實作整合到現有的C 程式中,讓Python實現在更大的程式中無縫使用。
考慮以下C 介面定義:
<code class="cpp">class myif { public: virtual float myfunc(float a) = 0; };</code>
使用SWIG 啟用多態性:
%module(directors="1") module %include "myif.h"
建立Python 實作:
<code class="python">import module class MyCl(module.myif): def __init__(self): module.myif.__init__(self) def myfunc(self, a): return a * 2.0</code>
<code class="cpp">Py_Initialize();</code>
在C 嵌入Python
<code class="cpp">PyObject *module = PyImport_Import(PyString_FromString("mycl"));</code>
初始化Python (main.cc):
<code class="cpp">PyObject *instance = PyRun_String("mycl.MyCl()", Py_eval_input, dict, dict); double ret = PyFloat_AsDouble(PyObject_CallMethod(instance, "myfunc", (char *)"(O)" ,PyFloat_FromDouble(input)));</code>
<code class="cpp">Py_Finalize();</code>
swig -Wall -c++ -python -external-runtime runtime.h
g++ -DSWIG_TYPE_TABLE=myif -Wall -Wextra -shared -o _module.so myif_wrap.cxx -I/usr/include/python2.7 -lpython2.7
<code class="cpp">myif *python2interface(PyObject *obj) { ... }</code>
<code class="cpp">int main() { ... myif *inst = python2interface(instance); std::cout << inst->myfunc(input) << std::endl; ... }</code>
終結:
將Python 物件轉換為C 指標 🎜>重新編譯SWIG 模組:main.cc 中的最終實現按照以下步驟,可以成功實現Python 實現C 接口並將它們無縫整合到更大的C 程式中,提供更大的靈活性和可擴展性。以上是如何將 C 介面暴露給 Python 來實現?的詳細內容。更多資訊請關注PHP中文網其他相關文章!