>> a = 256 >>> b = 256 >>> a is b True # This is an expected resu-6ren">
gpt4 book ai didi

python - "is"运算符对整数的行为异常

转载 作者:太空狗 更新时间:2023-10-29 21:59:27 26 4
gpt4 key购买 nike

为什么以下在 Python 中会出现意外行为?

>>> a = 256
>>> b = 256
>>> a is b
True # This is an expected result
>>> a = 257
>>> b = 257
>>> a is b
False # What happened here? Why is this False?
>>> 257 is 257
True # Yet the literal numbers compare properly

我正在使用 Python 2.5.2。尝试一些不同版本的 Python,似乎 Python 2.3.3 在 99 和 100 之间显示了上述行为。

基于以上内容,我可以假设 Python 的内部实现方式是“小”整数与大整数的存储方式不同,is 运算符可以区分它们。为什么泄漏抽象?当我事先不知道它们是否为数字时,比较两个任意对象以查看它们是否相同的更好方法是什么?

最佳答案

看看这个:

>>> a = 256
>>> b = 256
>>> id(a)
9987148
>>> id(b)
9987148
>>> a = 257
>>> b = 257
>>> id(a)
11662816
>>> id(b)
11662828

这是我在 "Plain Integer Objects" 的文档中找到的内容:

The current implementation keeps an array of integer objects for all integers between -5 and 256. When you create an int in that range you actually just get back a reference to the existing object.

关于python - "is"运算符对整数的行为异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35508944/

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