标签: python ctypes
如何使用ctypes编写下面复制的定义?
unsigned char* x = new unsigned char[10];
谢谢。
答案 0 :(得分:1)
根据您需要使用x的方式,您可能需要ctypes.create_string_buffer。
x
ctypes.create_string_buffer
x = ctypes.create_string_buffer(' ' * 10);