python 对象析构 __del__

创建日期: 2023-10-12 10:09 | 作者: 风波 | 浏览次数: 14 | 分类: Python

来源:https://stackoverflow.com/questions/28722112/how-to-do-something-when-a-python-object-is-destroyed

class MyClass(object):
    def __del__(self):
        object.__del__(self)
        dosomething()
14 浏览
8 爬虫
0 评论