0
說我有下面的C代碼:的Python ctypes的,有結構的typedef工作
typedef struct _test test;
struct _test {
test* just_a_test;
char* just_a_char;
};
將在下面的實施工作?
class test(Structure):
_fields_ = [
('just_a_test', POINTER(test)),
('just_a_char', c_char_p),
]
我只是困惑於結構中的第一個指針。