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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 詳解Python中的__init__和__new__Python
- Python __new__ 和 __init__ 的區別Python
- Python中__new__和__init__的區別與聯絡Python
- python中的__init__ 、__new__、__call__小結Python
- 一問搞懂python的__init__和__new__方法Python
- __new__和__init__的區別
- Python面試之理解__new__和__init__的區別Python面試
- python2中的__new__與__init__,新式類和經典類Python
- 簡述Python類中的 __init__、__new__、__call__ 方法Python
- Python中的__new__、__init__、__call__三個特殊方法Python
- Python語言中__init__與__new__的區別是什麼?Python
- Python中__init__的用法和理解Python
- python類中super()和__init__()的區別Python
- python中__new__的使用注意Python
- Python中的__new__()詳解Python
- Python中__init__的理解Python
- python中的“__init__”函式Python函式
- Python 和 Ruby 的對比Python
- Python__new__和__init__Python
- python的__init__()Python
- Python中__init__方法注意點Python
- 技術原理:Python中range和xrange對比Python
- (學習筆記)python 對__init__的初步理解筆記Python
- Python 中__new__方法詳解及使用Python
- 詳細解讀Python中的__init__()方法Python
- Python中的__init__()方法整理中(兩種解釋)Python
- 類中的__init__()和__call__()函式函式
- Python中的__init__到底是幹什麼的?Python
- Python 中的 super(類名, self).__init__() 的含義Python
- Java和Python的程式設計對比JavaPython程式設計
- 對比Ruby和Python的垃圾回收(1)Python
- 對比JavaScript中的Continue和BreakJavaScript
- MySQL和Oracle中的delete,truncate對比MySqlOracledelete
- Python 中__init__函式以及引數selfPython函式
- php和linux中的正則對比PHPLinux
- mx和spark中的文字元件對比Spark字元元件
- 《每天用對比的思想學點 golang》PHP Python 對比 Golang 中的陣列 切片 mapGolangPHPPython陣列
- 對比 Redis 中 RDB 和 AOF 持久化Redis持久化