获取指针数组中的指针内容

时间:2017-09-04 16:07:13

标签: arrays performance numpy pointers ctypes

通过ctypes,我能够获得包含一系列指针的缓冲区的内存地址:

buff = (ctypes.c_void_p * buff_len).from_address(addr)
arr = np.ndarray((buff_len, ), 'u8', buff, order='C')

但如果我不能用numpy获取指针内容,那么得到一系列指针有什么用?

我该怎么做??

array([1660015432 1660015768 1660015480 1660015720 1660015528 1660015672
       1660015576 1660015624], dtype=uint64)

0 个答案:

没有答案