python濡備綍璋冪敤c鍑芥暟

鍦╬ython涓娇鐢╟types妯″潡璋冪敤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
相关问答