您是否遇到過必須使用python呼叫C函數的情況?本文將在非常基礎的層面為您提供幫助,如果您沒有遇到這種情況,您會很高興知道它是如何實現的。
首先,讓我們用C寫一個簡單的函數,並產生該檔案的共享庫。假設檔名是function.c。
int myFunction(int num) { if (num == 0) //如果number为0,则不执行任何操作。 return 0; else // 如果number是2的幂,则返回1,否则返回0 num & (num - 1) == 0 ? return 1 : return 0 }
編譯:
cc -fPIC -shared -o libfun.so function.c
使用ctypes(外部函數介面)函式庫從Python呼叫C函數
上面的語句將產生一個名為libfun .so的共享庫。現在,讓我們看看如何在python中使用它。在python中,我們有一個名為ctypes的函式庫。使用這個函式庫我們可以在python中使用C函數。
假設檔名是function.py。
import ctypes NUM = 16 # libfun loaded to the python file # using fun.myFunction(), # C function can be accessed # but type of argument is the problem. fun = ctype.CDLL(libfun.so) # Now whenever argument # will be passed to the function # ctypes will check it. fun.myFunction.argtypes(ctypes.c_int) # now we can call this # function using instant (fun) # returnValue is the value # return by function written in C # code returnVale = fun.myFunction(NUM)
這篇文章是關於在Python中呼叫C函數的方法介紹,希望對需要的朋友有幫助!
以上是如何在Python中呼叫C函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!