码迷,mamicode.com
首页 > 编程语言 > 详细

Python __析构方法__del__

时间:2017-08-21 14:47:17      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:析构   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 __析构方法__del__

标签:析构   python   init   foo   ini   print   ==   int   对象   

原文地址:http://www.cnblogs.com/wangmengzhu/p/7404098.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!