python int 没有 __iadd__() 方法?
我知道这是不好的做法:
>>> 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
变成
因为不可变对象没有
__iadd__
。这是(实际上)
并且效果很好。
__add__
创建一个新的 int 对象。一些规则在这里 http://docs.python.org/reference/datamodel .html#强制规则。
Becomes
Because there's no
__iadd__
for immutable objects.This is (in effect)
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.
如果对象没有
__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.