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 __new__ 和 __init__ 的區別Python
- Python中__new__和__init__的區別與聯絡Python
- 一問搞懂python的__init__和__new__方法Python
- python中的__init__ 、__new__、__call__小結Python
- Python面試之理解__new__和__init__的區別Python面試
- 簡述Python類中的 __init__、__new__、__call__ 方法Python
- Python語言中__init__與__new__的區別是什麼?Python
- Python中__init__的用法和理解Python
- Python中__init__的理解Python
- python中__new__的使用注意Python
- Python 和 Ruby 的對比Python
- (學習筆記)python 對__init__的初步理解筆記Python
- Python 中__new__方法詳解及使用Python
- Python中的__init__()方法整理中(兩種解釋)Python
- 類中的__init__()和__call__()函式函式
- Python 中的 super(類名, self).__init__() 的含義Python
- 對比JavaScript中的Continue和BreakJavaScript
- Python 中__init__函式以及引數selfPython函式
- 素描構圖中的對比與調和
- python date 和 datetime 的取值範圍(對比 Mysql 的 datetime 和 timestamp)PythonMySql
- 《每天用對比的思想學點 golang》PHP Python 對比 Golang 中的陣列 切片 mapGolangPHPPython陣列
- Python==與is對比Python
- C++中單例模式和static的對比C++單例模式
- Python 和 c++/c/java 對於負數的儲存方式對比PythonC++Java
- Spring Boot中如何使用JDBC讀取和寫入資料,JDBC和JPA的對比,JdbcTemplate和SimpleJdbcInsert的用法對比Spring BootJDBC
- Python類中__del__()、__call__()、__repr__()、__new__()、__hash__()方法Python
- Git和SVN的對比Git
- 對比 Redis 中 RDB 和 AOF 持久化Redis持久化
- [pythonskill]Python中NaN和None的詳細比較PythonNaNNone
- 【Python】Python 對比 C語言的差異PythonC語言
- Python教程:sort和sorted實現排序之對比Python排序
- Java和Python哪個更好?解讀Python對比其他語言的優勢JavaPython
- 【實測】Python 和 C++ 下字串查詢的速度對比PythonC++字串
- python的__init__幾種方法總結【轉載】Python
- Go 與 C++ 的對比和比較GoC++
- beego 模板中對變數的對比Go變數
- 10 Python物件導向程式設計:類和物件以及和Java的對比Python物件程式設計Java
- Android自定義view中,onDraw和onLayout對比AndroidView