关于运算符重载:在Python中实现__concat__

Implementing __concat__ in Python

我试着实现__concat__,但没用

1
2
3
4
5
6
7
8
9
10
11
12
>>> 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'

我怎么修这个?


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

您需要实现__add__以获得您想要的行为。


您希望实现__add__,而不是__concat__。在python中没有__concat__特殊的方法。