我试图理解 gc,因为我在程序中有一个很大的列表,我需要删除它以释放一些急需的内存。我想回答的基本问题how can I find what is being tracked by gc and what has been freed?
是说明我的问题的代码
import gc
old=gc.get_objects()
a=1
new=gc.get_objects()
b=[e for e in new if e not in old]
print "Problem 1: len(new)-len(old)>1 :", len(new), len(old)
print "Problem 2: none of the element in b contain a or id(a): ", a in b, id(a) in b
print "Problem 3: The reference counts are insanely high, WHY?? "
恕我直言,这是文档中未解决的奇怪行为。对于初学者,为什么分配一个变量会为 gc 创建多个条目?为什么它们都不是我制作的变量?我在 get_objects() 中创建的变量的条目在哪里?
编辑:为了回应martjin的第一个回复,我检查了以下内容
a="foo"
print a in gc.get_objects()
仍然不行:(我如何检查 a 是否被 gc 跟踪?