Python中的id()函数指的什么

作者:djskl 时间:2022-01-14 12:38:04 

Python官方文档给出的解释是

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是随值的改变而改变的。

2、一个对象的id值在CPython解释器里就代表它在内存中的地址。(CPython解释器:http://zh.wikipedia.org/wiki/CPython)


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值


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 = 19998989890
b = 19998989889 +1
print a is b  #False

is与==的区别就是,is是内存中的比较,而==是值的比较

总结

以上所述是小编给大家介绍Python中的id函数网站的支持!

来源:http://blog.csdn.net/djskl/article/details/25886187

标签:python,id,函数
0
投稿

猜你喜欢

  • 浅谈Python几种常见的归一化方法

    2021-01-22 16:36:45
  • CSS在Internet Explorer 6, 7 和8中的差别

    2009-10-26 18:14:00
  • Django框架的中的setting.py文件说明详解

    2022-11-05 13:26:24
  • python编程羊车门问题代码示例

    2023-04-10 18:39:19
  • PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法

    2023-11-16 13:00:48
  • 深入理解Python中的内置常量

    2023-01-21 02:57:47
  • Python import自己的模块报错问题及解决

    2023-11-09 15:57:08
  • 认识延迟时间为 0 的 setTimeout

    2008-04-04 16:37:00
  • 详解MySQL数据库安全配置

    2010-01-26 15:19:00
  • 使用Python检测文章抄袭及去重算法原理解析

    2023-04-26 12:00:54
  • Python配置文件yaml的用法详解

    2023-07-04 21:02:56
  • 微软建议的ASP性能优化28条守则(9)

    2005-05-30 16:05:00
  • 用python读写excel的方法

    2021-11-11 10:10:50
  • Python实现XML文件解析的示例代码

    2022-02-24 11:03:43
  • 如何写python的配置文件

    2022-08-06 15:57:09
  • 在Asp程序中取得表单所有内容的方法

    2010-04-24 16:07:00
  • Selenium自动化测试工具使用方法汇总

    2022-02-10 16:26:21
  • 一个表单焦点效果函数

    2008-01-19 10:59:00
  • 解决tensorflow 释放图,删除变量问题

    2023-08-10 09:42:47
  • Python实现对图像加噪(高斯噪声 椒盐噪声)

    2023-06-15 03:08:34
  • asp之家 网络编程 m.aspxhome.com