Python中的魔法方法:1.__del__方法常用于明確銷毀某個對象;2.__init__()方法常用于初始化實例對象;3.__new__()方法可以定義一個對象的初始化操作;
Python中的魔法方法有以下幾種
1.__del__方法
__del__方法常用于明確銷毀某個對象,不可以有參數。
# 創建一個Student對象,保存到變量student_a中
>>> student_a = Student()
__init__() is Running
>>> del(student_a) # 銷毀對象student_a
__del__() is Running
2.__new__方法
__new__()方法可以定義一個對象的初始化操作,且只能用于從object繼承的新式類。
def __new__(cls, *args, **kwargs):
print("__new__被調用了")
'''創建對象'''
return super(Check2, cls).__new__(cls, *args, **kwargs)
3.__init__方法
__init__()方法常用于初始化實例對象,每次構造一個實例對象時,都會調用該類的初始化函數。
>>> class Student: # 定義類Student
... version = "1.0" # 類屬性
... author = "python.cn"
... def __init__(self): # 構造函數
... print("__init__() is Running")
...
>>> student_a = Student() # 構造一個對象
__init__() is Running