大忽悠喵 发表于 2019-3-8 20:56:45

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?

塔利班 发表于 2019-3-8 21:05:57

自定义的优先,你没有额外自定义add魔法方法

°蓝鲤歌蓝 发表于 2019-3-8 21:23:22

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:28:57

°蓝鲤歌蓝 发表于 2019-3-8 21:23
1.根据官方文档的解释,




官方文档在哪里,学学

°蓝鲤歌蓝 发表于 2019-3-8 21:33:42

塔利班 发表于 2019-3-8 21:28
官方文档在哪里,学学

百度就找得到了。

°蓝鲤歌蓝 发表于 2019-3-8 21:36:46

塔利班 发表于 2019-3-8 21:28
官方文档在哪里,学学

https://docs.python.org/3/reference/datamodel.html

塔利班 发表于 2019-3-8 21:41:49

°蓝鲤歌蓝 发表于 2019-3-8 21:36
https://docs.python.org/3/reference/datamodel.html

好的,看见了,我去记下

大忽悠喵 发表于 2019-3-9 09:39:15

°蓝鲤歌蓝 发表于 2019-3-8 21:23
1.根据官方文档的解释,




谢谢谢谢

混沌夜漩船长V 发表于 2019-8-7 23:10:28

°蓝鲤歌蓝 发表于 2019-3-8 21:23
1.根据官方文档的解释,




真大神出现了

bravsheng 发表于 2021-8-6 17:55:45

°蓝鲤歌蓝 发表于 2019-3-8 21:23
1.根据官方文档的解释,




官方解释,学习了!
页: [1]
查看完整版本: 43课中__radd__方法还是有点小问题求解答