在python 3.3及更高版本中,当我们覆盖__new__()
时,我们不必将参数和关键字参数传递给super().__new__()
或object.__new__()
。但是对super().__new__()
的调用返回一个类的实例。
然后python如何将其余的参数传递给__init__
?
class Spam(object):
''' Hello I am Spam '''
def __new__(cls, *args, **kwargs):
print("Creating Instance")
instance = object.__new__(cls) # Who passed *args and **kwargs to __init__?
print(instance)
return instance
def __init__(self, a, b):
print("Init Called")
self.a = a
self.b = b
有人可以解释一下这里发生了什么吗?
答案 0 :(得分:1)
您将 cls 作为参数传递给object.__new__
,因此解释器可以检查 instance 是否是 cls 的实例。
初始化器( __ init __ )由分配器( __ new __ )自动调用为{{3} }(重点是我的)状态:
如果[Python 3]: object.__new__(cls[, ...])返回 cls 的实例,则然后,新实例的__new__()方法将像
__init__(self[, ...])
那样被调用,其中 self 是新实例,其余参数与传递给__init__() 的参数相同。
code.py :
#!/usr/bin/env python3
import sys
class Spam(object):
''' Hello I am Spam '''
def __new__(cls, *args, **kwargs):
print("Creating Instance")
instance = object.__new__(cls) # Who passed *args and **kwargs to __init__?
print(instance)
#return instance # If you return anything else (1, object(), or None by commenting the line) here, __init__ won't be called
if len(sys.argv) == 1: # DO NOT DO THIS!!! It's just for demo purposes
return instance
def __init__(self, a, b):
print("Init Called")
self.a = a
self.b = b
def main():
spam = Spam(1, 2)
print(type(spam), dir(spam))
if __name__ == "__main__":
print("Python {:s} on {:s}\n".format(sys.version, sys.platform))
main()
输出:
e:\Work\Dev\StackOverflow\q054511671>"e:\Work\Dev\VEnvs\py_064_03.06.08_test0\Scripts\python.exe" code.py Python 3.6.8 (tags/v3.6.8:3c6b436a57, Dec 24 2018, 00:16:47) [MSC v.1916 64 bit (AMD64)] on win32 Creating Instance <__main__.Spam object at 0x000001F8E24D14E0> Init Called <class '__main__.Spam'> ['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'a', 'b'] e:\Work\Dev\StackOverflow\q054511671>"e:\Work\Dev\VEnvs\py_064_03.06.08_test0\Scripts\python.exe" code.py arg Python 3.6.8 (tags/v3.6.8:3c6b436a57, Dec 24 2018, 00:16:47) [MSC v.1916 64 bit (AMD64)] on win32 Creating Instance <__main__.Spam object at 0x0000020808F71550> <class 'NoneType'> ['__bool__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']
请注意,这不是特定于 Python 3 (检查__init__()),而是特定于[Python 2]: Data model 有关更多详细信息,您还可以选中检查[Python]: New-style Classes( Singleton 类)。
答案 1 :(得分:1)
这里重要的是初始呼叫,例如spam = Spam('x', 1)
。
在内部,Python使用已传递的参数将__new__
作为类Spam
上的类方法。 Spam.__new__
的实际作用并不重要,它仅应返回一个对象。
它确实使用object.__new__
来构建Spam
对象。由于所创建的对象具有正确的类,因此Python会使用初始参数 在其上调用__init__
。