python呼叫C語言動態庫

2021-09-06 15:35:43 字數 834 閱讀 6561

python完美相容c語言,有了ctypes 可以呼叫c相關** 

如果是c++**   編譯的時候加上 extern "c" 就可以了 ,如果是一些複雜型別比如結構體,類,聯合一些 可以考慮用boost.python

exp.c

#include int add(int a, int b)

編譯生成動態庫add.so

gcc -c -fpic exp.c

gcc -shared exp.o -o add.so

add_c.py

#!/usr/bin/python

from ctypes import *

import os

#載入c動態庫

c_scan = cdll.loadlibrary('./add.so')

c_scan.add.restype = c_int #函式的返回值型別int

c_scan.add.argtypes = (c_int, c_int) #入參型別

#兩個入參256和112

c_int_a = c_int(256)

c_int_b = c_int(112)

#設定返回值變數的型別

return_value = c_int()

#入參最後得出結果儲存在return_value裡面

return_value = c_scan.add(c_int_a, c_int_b)

print(return_value)

#執行

python add_c.py

結果:368

Python 呼叫 C 動態庫

呼叫c庫而不是c 庫 要注意平台位數對應 解釋型語言自上而下執行 函式類似標籤,縮排表示 塊 一行一條語句時可以不用分號 如何分配一段記憶體等 test python sample 輸入輸出 print hello end print python string input 請輸入 print 你輸...

python呼叫c 動態庫(1)

由於專案中需要使用python語言搭建伺服器呼叫我的目標檢測演算法來實現功能,所以記錄一下自己除錯過程中的歷程,也做個mark。1.準備c 動態庫 ifndef cppde h define cppde h include cppde global.h include include include...

c語言呼叫c語言的so動態庫

1.環境 ubuntu14.o4 gcc 4.8.4 2.庫檔案生成 1 原始碼 int add int a,int b 2 生成庫檔案 cd到cltest.c所在目錄,輸入命令 gcc shared o libcltest.so cltest.c會在當前目錄生成檔案libcltest.so 3.主...