python 3.5中 为什么无法重写魔法方法
发布网友
发布时间:2022-04-07 08:55
我来回答
共2个回答
热心网友
时间:2022-04-07 10:24
可以写呀,如下
class New_int(int):
def __add__(self,other):
return int.__sub__(self,other)
def __sub__(self, other):
return int.__add__(self,other)
a=New_int(3)
b=New_int(5)
print(a+b)
你写的是不是少一个_
热心网友
时间:2022-04-07 11:42
3.5表示:好像不关我的事吧👀