python 常見內置函數setattr、getattr、delattr、setitem、getitem、delitem
阿新 • • 發佈:2018-03-15
ini data lin 內置函數 根據 ret set color person
常見內置函數
-
內置函數:在類的內部,特定時機自動觸發的函數
-
示例1:setattr、getattr、delattr
-
class Person: # def __init__(self, name): # self.name = name ? def __setattr__(self, key, value): # 當設置對象成員屬性的時,系統會自動調用 print(key, value) self.__dict__[key] = value ? def __getattr__(self, item):
每個對象都有一個成員屬性:dict
用於存放對象的屬性,包括動態添加的
print(xiaoming.dict) xiaoming.name= ‘小明‘ print(xiaoming.name) print(xiaoming.dict) xiaoming.age = 18 print(xiaoming.age) print(xiaoming.hello) del xiaoming.age
示例2:setitem、getitem、delitem
-
當對對象按照字典方式操作時,會自動觸發相關方法
-
示例:
class Person: # 當對對象按照字典設置鍵值對時,會自動觸發該方法 def __setitem__(self, key, value): # print(key, value)
python 常見內置函數setattr、getattr、delattr、setitem、getitem、delitem