gpt4 book ai didi

Python ctypes 如何跳过可选参数

转载 作者:太空宇宙 更新时间:2023-11-04 00:00:12 27 4
gpt4 key购买 nike

我在 header im wrapping 中有一个函数

IMPORT_FUNCTION int WINAPI GetStuff(int id, StuffStruct* stuff, StuffList *stuffList=NULL);

我用

包装了这个函数
mydll.GetStuff.argtypes = [c_int, POINTER(StuffStruct), POINTER(StuffList)]

也试过跳过

mydll.GetStuff.argtypes = [c_int, POINTER(StuffStruct)]

我需要在不指定最后一个参数的情况下调用此函数。我尝试了 None 并创建了一个像这样的空指针 POINTER(StuffList)()我觉得我应该使用用户原型(prototype),但我现在还不知道。

stuff = StuffStruct()
np = POINTER(StuffList)()
mydll.GetStuff(2, byref(stuff), None) # tried this
mydll.GetStuff(2, byref(stuff), np) # tried this
mydll.GetStuff(2, byref(stuff)) # tried this

最佳答案

None 相当于 Python 中的 NULL。为所有三个参数声明 argtypes。以下是正确的:

mydll.GetStuff.argtypes = [c_int, POINTER(StuffStruct), POINTER(StuffList)]    

stuff = StuffStruct()
mydll.GetStuff(2, byref(stuff), None)

ctypes 不知道可选参数,所以你必须传递一些东西。您始终可以将 ctypes 调用包装在 Python 函数中,然后调用它:

def GetStuff(id,stuff,stuffList=None):
mydll.GetStuff(id,stuff,stuffList)

关于Python ctypes 如何跳过可选参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47835853/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com