我尝试实施__concat__
,但它不起作用
>>> class lHolder():
... def __init__(self,l):
... self.l=l
... def __concat__(self, l2):
... return self.l+l2
... def __iter__(self):
... return self.l.__iter__()
...
>>> lHolder([1])+[2]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'lHolder' and 'list'
我该如何解决这个问题?
答案 0 :(得分:5)
__concat__
不是特殊方法(http://docs.python.org/glossary.html#term-special-method)。它是操作员模块的一部分。
您需要实施__add__
才能获得所需的行为。
答案 1 :(得分:2)
您希望实施__add__
,而不是__concat__
。 Python中没有__concat__
特殊方法。