函数id()这货有什么用?

2013-03-01 16:54:56 +08:00
 ThunderEX
CPython说是返回的是内存里的地址,int值,这玩意有用么?
3568 次点击
所在节点    Python
5 条回复
yishenggudou
2013-03-01 19:02:02 +08:00
比较对象
ThunderEX
2013-03-01 19:09:14 +08:00
@yishenggudou 不是有is了么?
dreampuf
2013-03-01 19:09:37 +08:00
http://docs.python.org/2/library/functions.html#id
http://stackoverflow.com/questions/3402679/identifying-objects-why-does-the-returned-value-from-id-change

接着SO的链接

In [1]: a = 5

In [2]: id(a)
Out[2]: 140615773913304

In [3]: b = 5

In [4]: id(b)
Out[4]: 140615773913304

In [5]: a = 100005

In [6]: id(a)
Out[6]: 140615774390544

In [7]: b = 100005

In [8]: id(b)
Out[8]: 140615774253864
phuslu
2013-03-01 19:09:53 +08:00
的确没啥用,目前我用到的地方也就是 id(gevent.getcurrent()) 的返回值「充当」 thread id用。
ThunderEX
2013-03-01 19:39:58 +08:00
@dreampuf 所以……不是用is就够了么……

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/61683

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX