导语:
本文主要介绍了关于python使用add进行重载加法的相关知识,希望可以帮到处于编程学习途中的小伙伴
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
1、先定义一个类:
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
>>> a = Point(2, 4)
>>> b = Point(3, 5)
>>> a + b
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/site-packages/IPython/core/interactiveshell.py", line 2862, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-7-f96fb8f649b6>", line 1, in <module>
a + b
TypeError: unsupported operand type(s) for +: 'Point' and 'Point'
很显然 a 和 b 并不能相加,但是我们可以定义一个方法让它们实现相加。
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
# 定义一个 add 方法
def add(self, other):
return Point(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):
return Point(self.x + other.x, self.y + other.y)
显然+是调用类的__add__方法,因为我们只需要添加这个方法就可以实现加法操作。
以上就是python使用add进行
重载加法,希望能对大家有所帮助。
更多Python学习指路:
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何判断列表是否不包含元素09/24
- ♥ 如何在python中使用next函数?09/07
- ♥ 如何从另一个文件导入类12/23
- ♥ 如何在python中注释多行代码09/07
- ♥ python中__new__的使用注意事项01/01
- ♥ python help()获取函数信息01/05
内容反馈