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 中删除对象的每个引用?


基础教程推荐
- 包装空间模型 2022-01-01
- 求两个直方图的卷积 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01