如何在Python中调用C函数
程序员文章站
2022-03-19 15:10:20
...
您是否遇到过必须使用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函数的详细内容,更多请关注其它相关文章!
下一篇: python如何停止运行
推荐阅读
-
Python实现调用另一个路径下py文件中的函数方法总结
-
C++ 调用Python3 脚本中无法引入内建模块的问题解决方法
-
OpenCV中的新函数connectedComponentsWithStats使用(python和c++实例)
-
Python中实现结构相似的函数调用方法
-
如何在Python中调用打包好的Jar文件?
-
QML调用C++的属性的方法:从QML调用C++中的函数以及连接C++中的信号
-
Python实现的调用C语言函数功能简单实例
-
C++调用Python脚本中的函数
-
Python编程-python与其它语言的互相调用(一):如何在shell中调用python代码
-
Python中函数的基本定义与调用及内置函数详解