gpt4 book ai didi

python - gc.collect() 的返回值究竟意味着什么?

转载 作者:太空狗 更新时间:2023-10-30 00:28:59 28 4
gpt4 key购买 nike

当我在 Python 脚本中执行 gc.collect() 时,它会返回 86、14 等值。

我知道这个调用执行垃圾收集,我已经阅读了文档 here .但是有人可以通过示例解释这些数字实际上是什么意思吗?

最佳答案

当您因不了解自己而受到责备时 ;-) ,它会返回“无法访问的对象的数量”。但是文档还不够详细,无法确切地了解这的意思

它实际上是两个数字的总和:被识别为垃圾并实际被释放的对象数,加上被识别为垃圾但无法被释放的对象数。对于后者的示例,在 Python 3.4 之前无法自动释放包含至少一个具有 __del__ 方法的对象的无法访问(“垃圾”)引用循环中的对象。

这是 Python 3.6.5 下的一个例子:

>>> gc.collect() # no trash to begin with
0
>>> a = []
>>> a.append(a) # create an object that references itself
>>> gc.collect() # but it's not trash because name "a" is bound to it
0
>>> a = None # break the binding; _now_ it's trash
# but refcounting alone can't discover that it's trash
>>> gc.collect() # .collect() finds this cyclic trash
1 # and reports that one trash object was collected

一般来说,这个返回值很少用到。

关于python - gc.collect() 的返回值究竟意味着什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49827518/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com