程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> python 調用 C++ code

python 調用 C++ code

編輯:C++入門知識

python 調用 C++ code


本文以實例code講解python 調用 C++的方法。
1. 如果沒有參數傳遞從python傳遞至C++,python調用C++的最簡單方法是將函數聲明為C可用函數,然後作為C code被python調用,如這裡三樓所示;
2. 有參數傳遞至C++函數,swig是最便捷的調用方法,以下面這個工程所示為例;


rachel.i (swig文件):

%module rachel
%{
#include rachel.h
%}

extern int linear(int x, int w, int b);

C++ code 部分:

rachel.h:

#include                 
#include                

int linear(int x, int w, int b);  

rachel.cpp:

#include rachel.h       

int linear(int x, int w, int b){ 
    int res = w * x + b;         
    printf(%d
, res);         
    return res;                  
}                                

執行命令:

swig -c++ -python rachel.i
g++ -c -fPIC rachel_wrap.cxx -I/home/zhangruiqing01/.jumbo/include/python2.7 -I./include
g++ -shared rachel.o rachel_wrap.o -o _rachel.so

第一句swig生成rachel_warp.cxx (如果是C,則用swig -python rachel.i生成rachel_warp.c文件);
最後一句生成動態鏈接庫_rachel.so供python調用(如果是C,則用ld -shared rachel.o rachel_warp.o -o _rachel.so);

python 調用部分:

>>> import _rachel
>>> _rachel.linear(1,2,5)
7

最後看一下本文中程序的結構:


這裡寫圖片描述

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved