Python del statement(Python del 语句)
问题描述
在 Python 中对变量调用 del
.这会立即释放分配的内存还是仍在等待垃圾收集器收集?和 java 一样,显式调用 del
对何时释放内存没有影响.
Calling del
on a variable in Python. Does this free the allocated memory immediately or still waiting for garbage collector to collect? Like in java, explicitly calling del
has no effect on when the memory will be freed.
推荐答案
del 语句不回收内存.它删除了一个引用,这会减少该值的引用计数.如果计数为零,则可以回收内存.CPython 会立即回收内存,无需等待垃圾收集器运行.
The del statement doesn't reclaim memory. It removes a reference, which decrements the reference count on the value. If the count is zero, the memory can be reclaimed. CPython will reclaim the memory immediately, there's no need to wait for the garbage collector to run.
其实垃圾回收器只是回收循环结构时才需要的.
In fact, the garbage collector is only needed for reclaiming cyclic structures.
正如 Waleed Khan 在他的评论中所说,Python 内存管理可以正常工作,您不必担心.
As Waleed Khan says in his comment, Python memory management just works, you don't have to worry about it.
这篇关于Python del 语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python del 语句


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