本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。
1、先定义一个类:
classPoint: def__init__(self,x,y): self.x=x self.y=y >>>a=Point(2,4) >>>b=Point(3,5) >>>a+b Traceback(mostrecentcalllast): File"/usr/local/python3//lib/python3.6/site-packages/IPython/core/interactiveshell.py",line2862,inrun_code exec(code_obj,self.user_global_ns,self.user_ns) File"<ipython-input-7-f96fb8f649b6>",line1,in<module> a+b TypeError:unsupportedoperandtype(s)for+:'Point'and'Point'
很显然 a 和 b 它们不能相加,但我们可以定义一种方法来实现它们的相加。
classPoint: def__init__(self,x,y): self.x=x self.y=y #定义add方法 defadd(self,other): returnPoint(self.x+other.x,self.y+other.y) >>>a=Point(2,4) >>>b=Point(3,5) >>>c=a.add(b) >>>c.x Out[6]:5
2、通过一个 add 方法,我们实现了它们的相加功能。然而,我们仍然习惯于使用加号,事实上,我们可以使用更改函数名称 + 计算。
def__add__(self,other): returnPoint(self.x+other.x,self.y+other.y)
很显然 + 是调用类 __add__ 方法,因为我们可以通过添加这种方法来实现加法操作。
以上是python使用add重载加法希望对大家有所帮助。更多Python学习指导:基础教程python基础教程