来源: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()
来源: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()