如果你对把Python嵌入c中时应该链接时有哪些库可以对其进行连接时,你就可以点击我们的文章进行观看,对把Python嵌入c中时应该链接的库有所了解,以下是文章的具体介绍,望你会有所啊后或。
- //------------------------------------------
- //cppobj.h
- //
- #include <iostream>
- using namespace std;
- class cppobj {
- private :
- string s;
- public :
- cppobj(string a): s(a) {};
- string show() {return s;}
- };
- //-----------------------------------------
- //------------------------------------------
- //cppobj.i
- %module cppobj
- %include "std_string.i"
- %{
- #include "cppobj.h"
- %}
- %include "cppobj.h"
- //------------------------------------------
- //------------------------------------------
- // Makefile
- _cppobj.so: cppobj_wrap.o
- g++ -o $@ $< -shared -fpic -lpython24
- cppobj_wrap.cxx: cppobj.i cppobj.h
- swig -c++ -python cppobj.i
- cppobj_wrap.o: cppobj.h cppobj_wrap.cxx
- g++ -c cppobj_wrap.cxx -fpic -IC:/Python24/include
- clean:
- rm -rf cppobj_wrap.cxx _cppobj.so *.o cppobj.py cppobj.pyc
- //------------------------------------------
把Python嵌入c中时应该链接库的相关代码的前部分介绍做完之后还要
- $ mv _cppobj.so _cppobj.pyd
然后就可以
- >>> from cppobj import cppobj
- >>> c = cppobj('Hello')
- >>> c.show()
- 'Hello'
很久以前记的笔记,希望能帮上忙Top以上就是对把Python嵌入c中时应该链接库的相关代码的介绍,望你会有所收获。
【编辑推荐】