在 Python 中实现 __concat__
我尝试实现__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'
我该如何解决这个问题?
I tried to implement __concat__
, but it didn't work
>>> 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'
How can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
__concat__
不是特殊方法 (http:// docs.python.org/glossary.html#term-special-method)。它是操作员模块的一部分。您需要实现 __add__ 来获得您想要的行为。
__concat__
is not a special method (http://docs.python.org/glossary.html#term-special-method). It is part of the operator module.You will need to implement
__add__
to get the behaviour you want.您想要实现
__add__
,而不是__concat__
。 Python 中没有 __concat__ 特殊方法。You want to implement
__add__
, not__concat__
. There's no__concat__
special method in Python.