什么是python的id函数
python官⽅给出的id解释为
id(object)
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.
由此可以看出:
1、id(object)返回的是对象的“⾝份证号”,唯⼀且不变,但在不重合的⽣命周期⾥,可能会出现相同的id值。此处所说的对象应该特指复合类型的对象(如类、list等),对于字符串、整数等类型,变量的id是随值的改变⽽改变的。
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
学python需要什么s="abc"
print id(s) #140190448953184
s="bcd"
print id(s) #32809848
x=1
print id(x) #15760488
x=2
print id(x)
令外,⽤is判断两个对象是否相等时,依据就是这个id值
class Obj():
def __init__(self,arg):
self.x=arg
def __eq__(self,other):
return self.x==other.x
if __name__ == '__main__':
obj1=Obj(1)
obj2=Obj(1)
print obj1 is obj2 #False
print obj1 == obj2 #True
lst1=[1]
lst2=[1]
print lst1 is lst2 #False
print lst1 == lst2 #True
s1='abc'
s2='abc'
print s1 is s2 #True
print s1 == s2 #True
a=2
b=1+1
print a is b #True
a = 199********
b = 199******** +1
print a is b #False
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函数是什么内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论