int(c_long(1))不工作。
int(c_long(1))
发布于 2010-02-25 07:57:12
>>> ctypes.c_long(1).value 1
发布于 2010-02-25 07:57:50
>>> type(ctypes.c_long(1).value) <type 'int'>
https://stackoverflow.com/questions/2330587
相似问题