Python __析构方法__del__

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python __析构方法__del__相关的知识,希望对你有一定的参考价值。

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的析构方法__del__

033.Python的__del__析构方法he__call__方法

Python入门-6面向对象编程:04__del__方法(析构函数)和垃圾回收机制-__call__方法和可调用对象

一文了解 Python 中的对象析构函数:__del__

类的析构方法__del__

__del__() 析构方法和__call__() 方法