python中id函數運行方式
id(object)
功能:返回的是對象的“身份證號”,唯一且不變,但在不重合的生命周期里,可能會出現相同的id值。此處所說的對象應該特指復合類型的對象(如類、list等),對于字符串、整數等類型,變量的id是隨值的改變而改變的。
Python版本: Python2.x Python3.x
Python英文官方文檔解釋:
Return the “identity” of an object. This is an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime. Two objects with non-overlapping lifetimes may have the same id() value.CPython implementation detail: This is the address of the object in memory.
注:一個對象的id值在CPython解釋器里就代表它在內存中的地址(Python的c語言實現的解釋器)。
代碼實例:
class Obj(): def __init__(self,arg): self.x=arg if __name__ == ’__main__’: obj=Obj(1) print id(obj) #32754432 obj.x=2 print id(obj) #32754432 s='abc' print id(s) #140190448953184 s='bcd' print id(s) #32809848 x=1 print id(x) #15760488 x=2 print id(x) #15760464
用is判斷兩個對象是否相等時,依據就是這個id值
is與==的區別就是,is是內存中的比較,而==是值的比較
知識點擴展:
Python id() 函數
描述
id() 函數返回對象的唯一標識符,標識符是一個整數。
CPython 中 id() 函數用于獲取對象的內存地址。
語法
id 語法:
id([object])
參數說明:
object -- 對象。
返回值
返回對象的內存地址。
實例
以下實例展示了 id 的使用方法:
>>>a = ’runoob’>>> id(a)4531887632>>> b = 1>>> id(b)140588731085608
到此這篇關于python中id函數運行方式的文章就介紹到這了,更多相關python的id函數如何運行內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!
相關文章:
1. 低版本IE正常運行HTML5+CSS3網站的3種解決方案2. jsp實現局部刷新頁面、異步加載頁面的方法3. xml文件的結構解讀第1/2頁4. Jsp中request的3個基礎實踐5. python GUI庫圖形界面開發之PyQt5計數器控件QSpinBox詳細使用方法與實例6. 使用python修改文件并立即寫回到原始位置操作(inplace讀寫)7. python GUI庫圖形界面開發之PyQt5工具欄控件QToolBar的詳細使用方法與實例8. Python填充任意顏色,不同算法時間差異分析說明9. Java map.getOrDefault()方法的用法詳解10. 什么是python的id函數
