gpt4 book ai didi

python中id函数运行方式

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章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语言实现的解释器).

代码实例:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 语法:

?
1
id ([ object ])

参数说明:

object -- 对象.

返回值 。

返回对象的内存地址.

实例 。

以下实例展示了 id 的使用方法:

?
1
2
3
4
5
6
>>>a = 'runoob'
>>> id (a)
4531887632
>>> b = 1
>>> id (b)
140588731085608

到此这篇关于python中id函数运行方式的文章就介绍到这了,更多相关python的id函数如何运行内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。

原文链接:https://www.py.cn/faq/python/14066.html 。

最后此篇关于python中id函数运行方式的文章就讲到这里了,如果你想了解更多关于python中id函数运行方式的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com