python使用add进行重载加法
python使用add进行重载加法
本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。
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"",line1,in
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学习教程请关注IT培训机构:开发教育。
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!