python运算符重载时间:2022-05-04 00:08:35class t1(test1): def __init__(self,value): self.data = value def __add__(self,other): return (self.data + other) def __str__(self): return '[t1 : %s]' % self.data