如何使用 ctypes 在 python 中查看指针值的变化

Posted

技术标签:

【中文标题】如何使用 ctypes 在 python 中查看指针值的变化【英文标题】:How can I see pointer value change in python using ctypes 【发布时间】:2020-05-01 12:46:17 【问题描述】:

我想在 C 中实现 void 函数,并在该函数中更改指针值,如下所示:

void func(int* k) *k = 9; 

如您所见,这里我正在更改 k 值,假设为 9。如何使用 ctypes 在 python 中编写此函数,以便我可以看到更改后的值是什么,在 C 中。让我们说下面的 python 代码示例

import ctypes
d = ctypes.CDLL(r'mydll.dll')
d.our_function.argtypes = (ctypes.POINTER(ctypes.c_int))

如您所见,没有返回,那么我如何在 python 调用中看到我的值已更改? 对不起我的英语不好...

【问题讨论】:

请注意您的 argtypes 不正确。它必须是一个序列。 (x) 不是元组; (x,)(甚至 x,)是一个 1 元组。逗号构成元组。 另外,你实际上并没有调用函数:) 【参考方案1】:

你需要自己在 Python 中分配一个int 并传递它的地址,像这样:

k = c_int()
d.our_function(byref(k))
print(k.value)

【讨论】:

以上是关于如何使用 ctypes 在 python 中查看指针值的变化的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 ctypes 在 python 中正确包装 C API?

如何在 Python 中使用 ctypes 卸载 DLL?

如何使用 ctypes 将数组从 C++ 函数返回到 Python

怎样用python调用dll

如何使用 ctypes 将此 Python 对象移动到 C++ 中?

使用ctype在python中调用c