python int 没有 __iadd__() 方法?

发布于 2024-09-30 14:55:18 字数 353 浏览 2 评论 0原文

我知道这是不好的做法:

>>> a = 5
>>> a.__radd__(5)
10
>>> a
5
>>> a.__iadd__(5)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'int' object has no attribute '__iadd__'

出于好奇,如果 int 对象没有 __iadd__,那么 += 是如何工作的?

I know this is bad practice:

>>> a = 5
>>> a.__radd__(5)
10
>>> a
5
>>> a.__iadd__(5)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'int' object has no attribute '__iadd__'

Out of curiosity, if an int object doesn't have __iadd__, then how does += work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独留℉清风醉 2024-10-07 14:55:18

出于好奇,如果 int 对象没有 __iadd__,那么 += 是如何工作的?

a += 5

变成

a = a + 5

因为不可变对象没有 __iadd__

这是(实际上)

a = a.__add__( 5 )

并且效果很好。 __add__ 创建一个新的 int 对象。

一些规则在这里 http://docs.python.org/reference/datamodel .html#强制规则

Out of curiosity, if an int object doesn't have __iadd__, then how does += work?

a += 5

Becomes

a = a + 5

Because there's no __iadd__ for immutable objects.

This is (in effect)

a = a.__add__( 5 )

And works nicely. A new int object is created by __add__.

Some of the rules are here http://docs.python.org/reference/datamodel.html#coercion-rules.

若言繁花未落 2024-10-07 14:55:18

如果对象没有__iadd__,则将使用__add__。方法 __iadd__ 应该是优化的就地 __add__ 情况,它不是强制性的。

If an object does not have __iadd__, __add__ will be used. Method __iadd__ is suposed to be an optimized inplace __add__ case, it is not mandatory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文