这是代码:
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 不起作用?