python可以做测试c的程序,
用到ctypes模块
ctypes 有以下优点:
ctypes 有以下缺点:
1、编写c函数
2、编译c函数为动态库
3、python2程序里面导入库
from ctypes import * mm = cdll.LoadLibrary('hello.dll')##或者为hello.so mm.print()
设置工程
编译
gcc -fPIC -shared test.c -o libtest.so
本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注脚本之家的更多内容!