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 语句
基础教程推荐
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
