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

python类 析构方法

时间:2019-04-17 15:17:47      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:自动调用   student   pre   print   sel   style   pytho   any   垃圾回收   

对象被销毁时执行的操作。一般用于资源回收。Python有垃圾回收机制会自动调用__del__,也可自己调用。

# -*- coding: UTF-8 -*-
class Student:
    company = LOL
    def __del__(self):
    print("销毁对象{0}".format(self))

s1 = Student()
s2 = student()
del s1

"销毁对象"s1和s2都会被调用,s2有回收机制调用。

 

python类 析构方法

标签:自动调用   student   pre   print   sel   style   pytho   any   垃圾回收   

原文地址:https://www.cnblogs.com/zzm-blog/p/10723553.html

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