python中__init__ 和__new__的對比

cnnbull發表於2021-09-11

python中__init__ 和__new__的對比

作用不同

1、__new__ 是用來建立類並返回這個類的例項,而 __init__ 只是將傳入的引數來初始化該例項。

__init__() 初始化方法 和 __new__(),透過類建立物件時,自動觸發執行。

概念不同

2、__new__() 建立物件時呼叫,會返回當前物件的一個例項

__init__() 建立完物件後呼叫,對當前物件的一些例項初始化,無返回值

例項

# __init__ 、 __new__
class Student(object):
 
    def __init__(self, name, age):
        print('__init__() called')
        self.name = name
        self.age = age
 
    def __new__(cls, *args, **kwargs):
        print('__new__() called')
        print(cls, args, kwargs)
        return super().__new__(cls)
  
 
# ipython 測驗
In [26]: s1 = Student('hui', age=21)
__new__() called
<class '__main__.Student'> ('hui',) {'age': 21}
__init__() called
 
In [27]: s2 = Student('jack', age=20)
__new__() called
<class '__main__.Student'> ('jack',) {'age': 20}
__init__() called

以上就是python中__init__ 和__new__的對比,希望對大家有所幫助。更多Python學習指路:

本文教程操作環境:windows7系統、Python 3.9.1,DELL G3電腦。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2524/viewspace-2829573/,如需轉載,請註明出處,否則將追究法律責任。

相關文章