python删除对象引用_使用Python删除内存中的对象
生活随笔
收集整理的這篇文章主要介紹了
python删除对象引用_使用Python删除内存中的对象
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
我正在嘗試使用這種方法刪除python中的對象。我閱讀了Python的文檔,聲明垃圾收集器將自動刪除未引用的對象。def check():
class newOb():
def __init__(self,value):
self.value = value
print self.value
return None
class ob:
ins = {}
def cr(self,someuniqueid,value) :
newV = newOb(value)
ob.ins[someuniqueid] = newV ## saving this object refernce to the ob class ins dictionary
return newV
#### Accessing Object ###
someuniqueid = 12
c = ob()
d = c.cr(someuniqueid,123)
print d.value ## will print 123
# now deleting the associated object
del c.ins[someuniqueid]
check()
在最后一步,我將從內存中刪除對象引用
正在使用上述過程將從內存中刪除對象
如果不是,那么代碼有什么問題以及如何糾正它
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的python删除对象引用_使用Python删除内存中的对象的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ipv6的127位掩码如何表示_子网掩码
- 下一篇: STL6-输入输出流