43课中__radd__方法还是有点小问题求解答
>>> class Nint(int):def __radd__(self,other):
return int.__sub__(other,self)
>>> a=Nint(5)
>>> b=Nint(3)
>>> 1+b
-2
>>> b+1
4
这个例子里面a,b的类型是Nint,1的类型是int,那为什么1+b不能用add方法,而b+1的时候可以直接用add? 自定义的优先,你没有额外自定义add魔法方法 1.根据官方文档的解释,
If the right operand’s type is a subclass of the left operand’s type and that subclass provides the reflected method for the operation, this method will be called before the left operand’s non-reflected method.
如果右操作数的类型是左操作数类型的子类,并且该子类提供了操作的反射方法,则该方法将在左操作数的非反射方法之前被调用。
type(b) # Nint
type(1)# int
Nint 是 int 的子类,所以是Nint类的反射方法先调用。
2. 楼上是错误的,即使额外自定义了 __add__()方法,1+b 仍然是调用 __radd__() 方法。
°蓝鲤歌蓝 发表于 2019-3-8 21:23
1.根据官方文档的解释,
官方文档在哪里,学学 塔利班 发表于 2019-3-8 21:28
官方文档在哪里,学学
百度就找得到了。 塔利班 发表于 2019-3-8 21:28
官方文档在哪里,学学
https://docs.python.org/3/reference/datamodel.html °蓝鲤歌蓝 发表于 2019-3-8 21:36
https://docs.python.org/3/reference/datamodel.html
好的,看见了,我去记下 °蓝鲤歌蓝 发表于 2019-3-8 21:23
1.根据官方文档的解释,
谢谢谢谢 °蓝鲤歌蓝 发表于 2019-3-8 21:23
1.根据官方文档的解释,
真大神出现了 °蓝鲤歌蓝 发表于 2019-3-8 21:23
1.根据官方文档的解释,
官方解释,学习了!
页:
[1]