参见英文答案 >
How to dereference a memory location from python ctypes? 1个
我有一个像0x6041f0的地址.我知道有一个整数坐在那里.在C中,我只需要完成*(int *)0x6041f0来获取该地址处的整数值.
我有一个像0x6041f0的地址.我知道有一个整数坐在那里.在C中,我只需要完成*(int *)0x6041f0来获取该地址处的整数值.
如何在Python中实现相同的功能?
PS:我正在编写一个使用gdb模块的Python脚本.正在调试的实际程序是在C中.因此需要大量的低级操作.
解决方法
像这样的东西:
$python Python 2.7.9 (default,Mar 19 2015,22:32:11) [GCC 4.8.4] on linux2 Type "help","copyright","credits" or "license" for more information. >>> from ctypes import * >>> c_int_p = POINTER(c_int) >>> x = c_int(4) >>> cast(addressof(x),c_int_p).contents c_int(4)
随着那个artbitrary地址:)
>>> cast(0x6041f0,c_int_p) <__main__.LP_c_int object at 0x7f44d06ce050> >>> cast(0x6041f0,c_int_p).contents Segmentation fault
见:ctypes供参考