标签:析构 python init foo ini print == int 对象
class Foo:
def __init__(self,x):
self.x=x
def __del__(self): #在对象资源被释放时触发
print(‘-----del------‘)
print(self)
f=Foo(100000)
del f
print(‘=======================>‘)
标签:析构 python init foo ini print == int 对象
原文地址:http://www.cnblogs.com/wangmengzhu/p/7404098.html