魔法方法《七》 getattr

2021-10-02 05:26:03 字數 1267 閱讀 7331

當訪問object不存在的屬性時會呼叫__getattr__方法

class house()

: def __init__

(self, name, age)

: self.name = name

self.age = age

def __getattr__

(self, item)

:return

'diaochan'

if __name__ ==

'__main__'

: house =

house

('chitu',18

)print

(house.name) chitu

print

(house.nickname) diaochan

chitu

diaochan

dongzhuo

也可字典引數,從字典中回去屬性

很簡單但經典,可以像訪問屬性一樣訪問dict中的鍵值對

class objectdict

(dict)

: def __init__

(self,

*args,

**kwargs)

:super

(objectdict, self)

.__init__

(*args,

**kwargs)

def __getattr__

(self, name)

: value = self[name]

ifisinstance

(value, dict)

: value =

objectdict

(value)

return value

if __name__ ==

'__main__'

: od =

objectdict

(asf=

, d=true)

print (od.asf)

print (od.asf.a)

print

(od.asf.name)

print (od.d)

1zhangsan

true

參考資料

Python魔法方法 基本的魔法方法

new cls 1.new 是在乙個物件例項化時候所呼叫的第乙個方法 2.他的第乙個引數是這個類,其他的引數是用來直接傳遞給 init 方法 3.new 決定是否使用該 init 方法,因為.new 可以直接呼叫其他類的構造方法,或者返回別的例項物件來作為本類的例項,如果 new 沒有返回例項物件,...

python 魔法方法

魔法方法具有一定的特徵 new cls class capstr str def new cls,string 修改新類裡的new方法,需傳入乙個引數 string string.upper return str.new cls,string 用父類裡的new方法進行返回,直接飯後構造後的物件def...

魔法方法 hash

hash 求hash值的 底層資料結構為hash表,hash 函式 hash表儲存資料的原理 1,計算雜湊值,決定hash表中儲存的位置 2.與當前位置其他物件去比較,如果相等,則不儲存,不等,才儲存進來 eq print hash a class student def init self,id,...