在Python中实现__concat__

时间:2010-03-08 10:17:36

标签: python operator-overloading sequences

我尝试实施__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'

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:5)

__concat__不是特殊方法(http://docs.python.org/glossary.html#term-special-method)。它是操作员模块的一部分。

您需要实施__add__才能获得所需的行为。

答案 1 :(得分:2)

您希望实施__add__,而不是__concat__。 Python中没有__concat__特殊方法。