pointer(struct)时就会提示要输入c的类型,但是POINTER()就不会
不知道你这个问题是否已经解决, 如果还没有解决的话:Using
ctypes module, we can create real pointers in Python.The pointer we implemented with ctypes are real pointers.
You can simulate Pointers in Python, or create real C-style pointers in Python.
The real reason you would use ctypes is if you needed to make a function call to a C library that requires a pointer.
《理解ctypes模块in Python》