我想创建一个包含稍后要执行的绑定方法的WeakSet:
class A(object):
def f(self):
print self.f, 'called'
a1 = A()
a2 = A()
a1.f()
a2.f()
打印
<bound method A.f of <__main__.A object at 0x10533ffd0>> called
<bound method A.f of <__main__.A object at 0x105350990>> called
到目前为止,这么好。但现在,
import weakref
ws = weakref.WeakSet()
ws.add(a1.f)
len(ws)
打印
0
为什么?
相关问题。在python shell中运行:
class A(object):
def __del__(self):
print '__del__(', self, ')'
a1 = A()
a1
<__main__.A object at 0x1053555d0>
del a1
a1
Traceback (most recent call last):
File "<pyshell#124>", line 1, in <module>
a1
NameError: name 'a1' is not defined
为什么没有__del__called?谁保留对a1的引用?