问题
从网上扒拉出来一段代码,是关于函数重写的。输出结果比较正常,但某些函数不太懂
```python
#!/usr/bin/python3
class Vector:
def __init__(self, a, b):
self.a = a
self.b = b
def __str__(self):
return 'Vector (%d, %d)' % (self.a, self.b)
def __add__(self, other):
return Vector(self.a + other.a, self.b + other.b) ###
v1 = Vector(2, 10)
v2 = Vector(5, -2)
print(v1 + v2)
为了解释 return ‘Vector (%d, %d)’ % (self.a, self.b) 经过探讨,初步得出一种可能的解释;
分析
str() 返回的必须是字符串, 我尝试打印v1和v2,结果告诉我这个方法返回的仅仅是个字符串而已;使用__add__函数将两个Vector类型相加,最后将新的Vector打印出来;而如何将Vector类型打印出来呢?这又是使用了__str__() 方法;这一点你可以尝试将return ‘Vector (%d, %d)’ % (self.a, self.b) 改为 return ’ (%d, %d)’ % (self.a, self.b) 看出来。