函数create_string_buffer(b"foo", 3)
返回类型c_char_Array_3
。尝试在预期c_char_p
的地方传递此消息会与TypeError: incompatible types, c_char_Array_3 instance instead of c_char_p instance
一起炸毁。如何将create_string_buffer
的输出传递到期望c_char_p
的字段中?
我认为这个人有相同的问题:https://ctypes-users.narkive.com/620LJv10/why-doesn-t-c-char-array-get-coerced-on-assignment-to-a-pointer
但是,我不清楚答案是什么。
答案 0 :(得分:1)
您可以 将create_string_buffer
对象传递给带有c_char_p
作为.argtypes
参数的函数,但是不能将其作为结构的成员。 cast
可以解决。您在问题中提供的链接中提到了这一点。
from ctypes import *
class foo(Structure):
_fields_ = [('bar',c_char_p)]
s = create_string_buffer(b'test')
f = foo()
f.bar = cast(s,c_char_p)
print(f.bar)
s[0] = b'q'
print(f.bar)
输出:
b'test'
b'qest'