所以我喜欢使用 attr 但有时我需要做我自己的事情。
我可以用自己的方法覆盖 __init__
方法吗?
import attr
@attr.s(auto_attribs=True)
class MyClass:
i: int
def __init__(self, i, special=None):
if special:
self.i = special
else:
self.i = i
>>> a = MyClass(i=1,special=2)
Traceback (most recent call last):
File "<input>", line 1, in <module>
a = MyClass(i=1,special=2)
TypeError: __init__() got an unexpected keyword argument 'special'
另一个例子:
@attr.s(auto_attribs=True)
class MyOtherClass:
i: int
def __init__(self, i, **kwargs):
self.i = kwargs.get('magic',i)
>>> a = MyOtherClass(i=5,magic=12)
Traceback (most recent call last):
File "<input>", line 1, in <module>
a = MyOtherClass(i=5,magic=12)
TypeError: __init__() got an unexpected keyword argument 'magic'
最佳答案
如果您传递 @attr.s(auto_attribs=True, init=False)
,则 attrs 将不会创建 __init__
方法(对 repr
、 eq
等的工作方式相同)。
从 attrs 20.1.0 开始,如果您传递 @attr.s(auto_attribs=True, auto_detect=True)
或使用 NG API @attr.define
(不需要参数),它将自动检测当前类中是否存在自定义 __init__
(以及所有其他 __
方法)并且不会覆盖它.
关于python - 在 python attrs 类中,如何用我自己的覆盖生成的 __init__,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58222483/