python函数之id函数


本文摘自php中文网,作者巴扎黑,侵删。

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语言实现的解释器)。

代码实例:

阅读剩余部分

相关阅读 >>

Python中函数参数的详细介绍(附实例)

Python怎么随机生成奇数

Python 实用函数进阶(更新中)

Python django是什么

Python中定义字符串

Python获取程序执行文件路径的方法

详解Python 2.6 升级至 Python 2.7 的实践心得

Python中=和==有什么区别?

一分钟了解Python中“*”的作用

Python之获取与简单处理金融数据

更多相关阅读请进入《Python》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...