Python:ctypes如何将c_char_Array转换为c_char_p

时间:2019-03-07 18:42:31

标签: python ctypes

函数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

但是,我不清楚答案是什么。

1 个答案:

答案 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'