__init__必须返回无。您不能(或至少不应该)返回其他东西。
>>> class Foo:... def __init__(self):... return 42... >>> foo = Foo()Traceback (most recent call last): File "<stdin>", line 1, in <module>TypeError: __init__() should return None
欢迎分享,转载请注明来源:内存溢出
__init__必须返回无。您不能(或至少不应该)返回其他东西。
>>> class Foo:... def __init__(self):... return 42... >>> foo = Foo()Traceback (most recent call last): File "<stdin>", line 1, in <module>TypeError: __init__() should return None
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)