膠水語言Python與C/C++的相互調用的實現
準備工作:
python:https://www.python.org/downloads/
Dev-C++:https://sourceforge.net/projects/orwelldevcpp/
gcc和g++:http://mingw-w64.org/doku.php
notepad++:https://notepad-plus.en.softonic.com/
一、Python調用C
步驟1:Csayhello.c
#include<stdio.h> void show_hello() { printf("------------來自C語言的問候-----------\n"); printf("-----Peter Zhao says:Hello C world!-----\n\n"); }
步驟2:
命令:gcc Csayhello.c -fPIC -shared -o lib_Csayhello.so
步驟3:Psayhello.py
from ctypes import * #加載動態庫 lib = cdll.LoadLibrary(r"./lib_Csayhello.so") lib.show_hello() print("-----------來自Python語言的問候--------------") print("---Peter Zhao says:Hello Python world,too!---")
步驟4:
命令:python Psayhello.py
註意:python為32位,沒有就裝一個。
運行結果:
二、Python調用C++
步驟1:新建項目dll_demo.dev
步驟2:dllmain.cpp
#define DLLEXPORT extern "C" __declspec(dllexport) DLLEXPORT int multiply(int a, int b) { return a * b; } //兩數相加 DLLEXPORT int add(int a, int b) { return a + b; } //兩數相減 DLLEXPORT int sub(int a, int b) { return a-b; }
步驟3:dll.h
int multiply(int, int); class Mymath { int sum(int, int); int sub(int, int); };
步驟4:編譯生成dll_demo.dll
步驟5:Pdll_demo.py
import ctypes #lib = ctypes.cdll.LoadLibrary(r"./dll_demo.dll") lib = ctypes.WinDLL(r"./dll_demo.dll") #print(lib) print(lib.multiply(80,95)) print(lib.add(80,95)) print(lib.sub(80,95))
步驟6:
命令:python Pdll_demo.py
註意:python為32位,沒有就裝一個。
運行結果:
三、C++調用Python函數
步驟1:Caculate.py
def add(a,b): return a+b
步驟2:新建項目test.dev,然後設置一下“項目屬性”的鏈接庫、庫目錄、包含文件目錄等3個部分。
步驟3:test.cpp
#include <python.h> #include<iostream> using namespace std; int main() { Py_Initialize();//使用python之前,要調用Py_Initialize();這個函數進行初始化 if (!Py_IsInitialized()) { printf("初始化失敗!"); return 0; } PyRun_SimpleString("import sys"); PyRun_SimpleString("sys.path.append('./')");//這一步很重要,修改Python路徑 PyObject * pModule = NULL;//聲明變量 PyObject * pFunc = NULL;// 聲明變量 pModule = PyImport_ImportModule("Caculate");//這裡是要調用的文件名Caculate.py if (pModule==NULL) { cout << "沒找到" << endl; } pFunc = PyObject_GetAttrString(pModule, "add");//這裡是要調用的函數名 PyObject* args = Py_BuildValue("(ii)", 100, 120);//給python函數參數賦值 PyObject* pRet = PyObject_CallObject(pFunc, args);//調用函數 int res = 0; PyArg_Parse(pRet,"i",&res);//轉換返回類型 cout << "res:" << res << endl;//輸出結果 Py_Finalize();//調用Py_Finalize,這個根Py_Initialize相對應的。 return 0; }
步驟4:編譯並運行
運行結果:
到此這篇關於膠水語言Python與C/C++的相互調用的實現的文章就介紹到這瞭,更多相關Python與C/C++相互調用內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- C++調用python(執行py文件)的全過程
- Python與C/C++的相互調用案例
- 如何在C++中調用Python
- 詳解如何在VS2019和VScode中配置C++調用python接口
- python源碼剖析之PyObject詳解