溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python類對象的析構(gòu)釋放怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2022-09-09 09:44:26 來源:億速云 閱讀:165 作者:iii 欄目:編程語言

這篇“python類對象的析構(gòu)釋放怎么實(shí)現(xiàn)”文章的知識點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“python類對象的析構(gòu)釋放怎么實(shí)現(xiàn)”文章吧。

一、類的構(gòu)造函數(shù)與析構(gòu)函數(shù)

  • _init__ 函數(shù)是python 類的構(gòu)造函數(shù),在創(chuàng)建一個(gè)類對象的時(shí)候,就會自動(dòng)調(diào)用該函數(shù);可以用來在創(chuàng)建對象的時(shí)候,設(shè)置該對象的一些初始化信息和設(shè)置。

  • __del__ 函數(shù)是python 類的析構(gòu)函數(shù),在一個(gè)類對象生命周期結(jié)束、被銷毀的時(shí)候,就會自動(dòng)調(diào)用該函數(shù);主要用來釋放對象占用的一些資源等。

二、代碼演示

1. 引用的更迭

如下,編寫了一個(gè) demo 類的實(shí)現(xiàn)代碼。

>>> class demo():
...     def __init__(self):
...             print("init class")
...             print(self)
...     def __del__(self):
...             print("del class")
...             print(self)
... 
>>>

該類對象在創(chuàng)建的時(shí)候,會調(diào)用 __init__函數(shù),打印出 “init class”;
該類對象在銷毀的時(shí)候,會調(diào)用 __del__函數(shù),打印出 “del class”。

>>> a1 = demo()
init class
<__main__.demo instance at 0x7f328f7c6cb0>
>>> 
>>> a2 = demo()  
init class
<__main__.demo instance at 0x7f328f7c6d40>
>>> 
>>> 
>>> 
>>> a1 = demo()
init class
<__main__.demo instance at 0x7f328f7c6d88>
del class
<__main__.demo instance at 0x7f328f7c6cb0>
>>>

首先使用變量 a1 引用一個(gè) demo 類對象,此時(shí)打印出"init class",以及a1 變量所引用的對象地址 0x7f328f7c6cb0;

使用變量 a2 引用另外的一個(gè) demo 類對象,此時(shí)打印出"init class",以及a2 變量所引用的對象地址 0x7f328f7c6d40;

a1 和 a2 變量所引用的類對象是不同的兩個(gè)對象 0x7f328f7c6cb00x7f328f7c6d40。

最后創(chuàng)建一個(gè) demo 類對象,再次使用 a1 變量來指向,此時(shí) a1 引用了新的類對象,引用地址為 0x7f328f7c6d88;同時(shí),由于之前 a1 引用的對象0x7f328f7c6cb0 不再有人引用它,因此舊的 demo 類對象的空間被釋放,打印出了 “del class 0x7f328f7c6cb0”。

2. 只在函數(shù)內(nèi)部的類對象

>>> def create_demo():
...     inst = demo()
... 
>>> create_demo()
init class
<__main__.demo instance at 0x7f328f7c6cb0>
del class
<__main__.demo instance at 0x7f328f7c6cb0>
>>> 
>>> 
>>> 
>>> create_demo()
init class
<__main__.demo instance at 0x7f328f7c6cb0>
del class
<__main__.demo instance at 0x7f328f7c6cb0>
>>> 
>>> 
>>> 
>>> create_demo()
init class
<__main__.demo instance at 0x7f328f7c6cb0>
del class
<__main__.demo instance at 0x7f328f7c6cb0>
>>>

定義一個(gè)函數(shù) create_demo,該函數(shù)的作用是創(chuàng)建一個(gè) demo 類對象,并且使用 inst 變量來引用創(chuàng)建的類對象。

調(diào)用一次 create_demo() 函數(shù),可以看到,demo 對象被創(chuàng)建,地址為 0x7f328f7c6cb0;接著該 demo 對象立即被釋放;因?yàn)樵搶ο笾辉?create_demo 函數(shù)范圍內(nèi)有效,函數(shù)結(jié)束,demo 對象就被回收釋放。

再調(diào)用一次 create_demo() 函數(shù),現(xiàn)象相同:demo 對象被創(chuàng)建,地址為 0x7f328f7c6cb0;接著該 demo 對象立即被釋放。

三、函數(shù)內(nèi)部返回的類對象

>>> def return_demo():
...     return demo()
...

定義函數(shù) return_demo,該函數(shù)內(nèi)部創(chuàng)建類對象,并且返回創(chuàng)建出的類對象。

>>> True
True
>>> return_demo()
init class
<__main__.demo instance at 0x7fc511eb8cb0>
<__main__.demo instance at 0x7fc511eb8cb0>
>>> 
>>> True
del class
<__main__.demo instance at 0x7fc511eb8cb0>
True
>>> 
>>> return_demo()
init class
<__main__.demo instance at 0x7fc511eb8cb0>
<__main__.demo instance at 0x7fc511eb8cb0>
>>> 
>>> 
>>> 
>>> True
del class
<__main__.demo instance at 0x7fc511eb8cb0>
True
>>> 
>>>

可以看到,第一次調(diào)用函數(shù) return_demo(),打印的內(nèi)容顯示,此時(shí)創(chuàng)建了一個(gè)對象,對象地址為 0x7fc511eb8cb0;函數(shù) return_demo 內(nèi)部使用 return 語句返回創(chuàng)建的類對象,因此函數(shù)返回時(shí),不會釋放對象 0x7fc511eb8cb0。

接著,執(zhí)行一條 Python 語句:True,同時(shí)看到對象 0x7fc511eb8cb0 被釋放。因?yàn)槌绦驁?zhí)行完 return_demo() 函數(shù)之后,發(fā)現(xiàn)后面的程序并沒有引用 return_demo() 返回的對象,因此 Python 便會釋放對象空間 0x7fc511eb8cb0

第二次執(zhí)行相同的操作,可以看到現(xiàn)象相同。

>>> v1_demo = None
>>> v2_demo = None 
>>> print(v1_demo)
None
>>> print(v2_demo)
None
>>> True
True
>>> 
>>> v1_demo = return_demo() 
init class
<__main__.demo instance at 0x7fc511eb8d88>
>>> 
>>> print(v1_demo)
<__main__.demo instance at 0x7fc511eb8d88>
>>> 
>>> True
True
>>> 
>>> 
>>> v2_demo = return_demo()  
init class
<__main__.demo instance at 0x7fc511eb8dd0>
>>> 
>>> print(v2_demo)
<__main__.demo instance at 0x7fc511eb8dd0>
>>> True
True
>>> 
>>> 
>>> 
>>> 
>>> v1_demo = None
del class
<__main__.demo instance at 0x7fc511eb8d88>
>>> 
>>> print(v1_demo)
None
>>>

該代碼段的現(xiàn)象和上個(gè)代碼段的現(xiàn)象基本相同。

可以看到,v1_demo 和 v2_demo 引用了類對象,所以 v1_demo 和 v2_demo 的值不再是 None。

最后,我們讓 v1_demo 重新為 None。此時(shí),v1_demo 引用的對象 0x7fc511eb8d88 就被釋放了。

1. 使用全局變量 引用 函數(shù)內(nèi)部的類對象

>>> g_demo = None
>>> print(g_demo)
None
>>> 
>>> def return_gdemo():    
...     global g_demo
...     g_demo = demo()
... 
>>> 
>>> print(g_demo)
None
>>> return_gdemo()
init class
<__main__.demo instance at 0x7fc511eb8d88>
>>> 
>>> print(g_demo)
<__main__.demo instance at 0x7fc511eb8d88>
>>> 
>>> True
True
>>>

以上就是關(guān)于“python類對象的析構(gòu)釋放怎么實(shí)現(xiàn)”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI