python如何调用c函数 python怎么调用c函数

主机教程 建站分享 2年前 (2022-11-21) 190次浏览

文章摘要:python如何调用c函数 python怎么调用c函数

在python中使用ctypes模块调用c函数,具体方法如下: from ctypes import * #导 […]

在python中使用ctypes模块调用c函数,具体方法如下:

from ctypes import * #导入ctypes模块

handle = cdll.LoadLibrary('libtest.so')

func = handle.printStr

func.argtypes = (c_char_p,c_char_p)

func.restype = c_char_p

tmp = handle.printStr("hello".encode("utf-8"),"world".encode("utf-8"))

print(tmp.decode("utf-8"))

输出结果为:

helloworld


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python如何调用c函数 python怎么调用c函数
文章链接:http://www.7966.org/post/14808.html
转载请注明出处

喜欢 (0)