您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

python函数之id函数

2024/5/11 18:07:34发布46次查看
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函数的详细内容。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product