How to delete every reference of an object in Python?(如何在 Python 中删除对象的每个引用?)
问题描述
假设你有类似的东西:
x = "something"
b = x
l = [b]
如何删除只有一个引用的对象,比如 x?
How can you delete the object only having one reference, say x?
del x
不会成功;例如,该对象仍然可以从 b 访问.
del x
won't do the trick; the object is still reachable from b, for example.
推荐答案
不不不.Python 有一个垃圾收集器,它有非常严重的领域问题——它不会干扰你创建对象,也不会干扰它删除对象.
No no no. Python has a garbage collector that has very strong territory issues - it won't mess with you creating objects, you don't mess with it deleting objects.
简而言之,这是不可能的,而且是有充分理由的.
Simply put, it can't be done, and for a good reason.
例如,如果您的需求来自例如缓存算法保留引用的情况,但不应阻止数据在没有人使用时被垃圾收集,您可能想看看 weakref
.
If, for instance, your need comes from cases of, say, caching algorithms that keep references, but should not prevent data from being garbage collected once no one is using it, you might want to take a look at weakref
.
这篇关于如何在 Python 中删除对象的每个引用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Python 中删除对象的每个引用?


- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01