Python - 如何检查弱引用是否仍然可用

发布于 2024-09-05 01:29:58 字数 151 浏览 9 评论 0 原文

我正在将一些弱引用从 Python 传递到 C++ 类中,但是当真实对象已经死亡时,C++ 析构函数会主动尝试访问引用,显然它会崩溃...

是否有任何 Python C/API 方法可以查明 Python 引用是否存在还活着还是有其他已知的解决方法?

谢谢

I am passing some weakrefs from Python into C++ class, but C++ destructors are actively trying to access the ref when the real object is already dead, obviously it crashes...

Is there any Python C/API approach to find out if Python reference is still alive or any other known workaround for this ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

平安喜乐 2024-09-12 01:29:58

来自 Python C API 文档:

PyObject* PyWeakref_GetObject(PyObject *ref)
返回值:借用参考。
从弱引用 ref 返回被引用的对象。如果参照物
不再存在,返回 None。 2.2 版本中的新功能。

From Python C API documentation:

PyObject* PyWeakref_GetObject(PyObject *ref)
Return value: Borrowed reference.
Return the referenced object from a weak reference, ref. If the referent
is no longer live, returns None. New in version 2.2.

兔姬 2024-09-12 01:29:58

如果你在弱引用上调用 PyWeakref_GetObject 它应该返回 Py_None 或 NULL,我忘记了。但是您应该检查它是否返回其中之一,这将告诉您引用的对象不再存在。

If you call PyWeakref_GetObject on the weak reference it should return either Py_None or NULL, I forget which. But you should check if it's returning one of those and that will tell you that the referenced object is no longer alive.

风吹过旳痕迹 2024-09-12 01:29:58

(与旧解决方案相比更新)

我们可以调用引用并检查它是否为 None:

assert reference_object() is not None, "object is dead"

From weakref 文档

(Update compared to the older solutions)

We can call the reference and check if it is None:

assert reference_object() is not None, "object is dead"

From weakref docs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文