这是代码:
class Add():
def __init__(self, argument):
self.argument = argument
def __add__(self, other):
return other + self.argument
z = Add(12)
x = Add(2)
t = z + x
print(t)
他工作。没有理由批评。
这是另一个带有新行的代码。
class Add():
def __init__(self, argument):
self.argument = argument
def __add__(self, other):
print(self.argument + other)
return other + self.argument
z = Add(12)
x = Add(2)
t = z + x
print(t)
它会抛出一个 TypeError 错误,即一个类型无法self.argument + other
对两种不同的数据类型执行算术运算。但以牺牲return other + self.argument
一些东西为代价,他保持沉默。
请帮我弄清楚特殊方法如何仍然有效__add__
。为什么脚本 2 不起作用?
第一个例子可以想象成一个链条:
在第二种情况下:
要允许
12 + Add(2)
,您可以__radd__
定义一个方法:__add__
Add()
如果您不希望表达式在经过几次添加后Add()
变成普通对象,也可以返回。int
还有一些关于数字的标准假设,例如,当它们不可变时很方便。如需灵感,您可以fractions.Fraction
查看 implementation。