我就废话不多说了,直接上代码吧!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
'''python对象销毁(垃圾回收)'''
class Point:
'info class'
def __init__( self ,x = 0 ,y = 0 ):
self .x = x
self .y = y
def __del__( self ):
class_name = self .__class__.__name__
print (class_name, '销毁' )
pt1 = Point()
pt2 = pt1
pt3 = pt2
print ( id (pt1), id (pt2), id (pt3))
print ( 1 )
del pt1
print ( 2 )
del pt2
print ( 3 )
del pt3
|
直到最后一个引用销毁
1
|
__del__ # 被调用
|
以上这篇python对象销毁实例(垃圾回收)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/ccorg/article/details/79577014