python中的內(nèi)置函數(shù)getattr()介紹及示例
在python的官方文檔中:getattr()的解釋如下:
getattr(object, name[, default]) Return the value of the named attribute of object. name must be a string. If the string is the name of one of the object's attributes, the result is the value of that attribute. For example, getattr(x, 'foobar') is equivalent to x.foobar. If the named attribute does not exist, default is returned if provided, otherwise AttributeError is raised.
根據(jù)屬性名稱返回對(duì)象值。如果“name”是對(duì)對(duì)象屬性的名稱,則返回對(duì)應(yīng)屬性的值。
'# -*- coding: utf-8 -*-'
__author__ = 'lucas'
class attrtest(object):
def __init__(self):
pass
def trygetattr0(self):
self.name = 'lucas'
print self.name
#equals to self.name
print getattr(self,'name')
def attribute1(self,para1):
print 'attribute1 called and '+ para1+' is passed in as a parameter'
def trygetattr(self):
fun = getattr(self,'attribute1')
print type(fun)
fun('crown')
if __name__=='__main__':
test = attrtest()
print 'getattr(self,\'name\') equals to self.name '
test.trygetattr0()
print 'attribute1 is indirectly called by fun()'
test.trygetattr()
print 'attrribute1 is directly called'
test.attribute1('tomato')
這段代碼執(zhí)行的結(jié)果是:
getattr(self,'name') equals to self.name lucas lucas attribute1 is indirectly called by fun() <type 'instancemethod'> attribute1 called and crown is passed in as a parameter attrribute1 is directly called attribute1 called and tomato is passed in as a parameter Process finished with exit code 0
第一個(gè)函數(shù)tryattribute0()非常好理解,就如同定義里說的一樣。第二個(gè)函數(shù)tryattribute1()就有一點(diǎn)費(fèi)解了。其實(shí)原理并不復(fù)雜,我們看到fun的type是 instancemethod,這里你可以認(rèn)為:對(duì)于函數(shù),getattr()的返回值是一個(gè)指針,指針賦值給接受它的變量,以后call這個(gè)變量就等于調(diào)用變量指向的函數(shù)。
原理我們知道了,那getattr的作用是什么呢?
你熟悉java或者c#中的反射么?反射的一個(gè)重要作用就是延遲加載,這樣可以解耦,這樣可以讓系統(tǒng)運(yùn)行的更有效率。作為動(dòng)態(tài)語言,python顯然在這方面要更加強(qiáng)大,
getattr()就是實(shí)現(xiàn)python反射的一塊積木,結(jié)合其它方法如setattr(),dir() 等,我們可以做出很多有趣的事情。
我們看以下場(chǎng)景:
1.我需要在一個(gè)類中動(dòng)態(tài)添加其它類中有的方法:
#如果類A中有如下方法:
def addnewattributesfromotherclass(self,class_name):
func_names = dir(class_name)
for func_name in func_names:
if not func_name.startswith('_'):
new_func = getattr(class_name,func_name)
self.__setattr__(func_name,new_func())
我們只需要:
a = A() b = B() a.addnewattributesfromotherclass(b)
這樣a就可以調(diào)用B中的'非私有'方法啦。
相關(guān)文章
在Apache服務(wù)器上同時(shí)運(yùn)行多個(gè)Django程序的方法
這篇文章主要介紹了在Apache服務(wù)器上同時(shí)運(yùn)行多個(gè)Django程序的方法,Django是Python各色高人氣web框架中最為著名的一個(gè),需要的朋友可以參考下2015-07-07
python接口自動(dòng)化使用requests庫發(fā)送http請(qǐng)求
這篇文章主要介紹了python接口自動(dòng)化使用requests庫發(fā)送http請(qǐng)求,HTTP協(xié)議?,一個(gè)基于TCP/IP通信協(xié)議來傳遞數(shù)據(jù),包括html文件、圖像、結(jié)果等,即是一個(gè)客戶端和服務(wù)器端請(qǐng)求和應(yīng)答的標(biāo)準(zhǔn)2022-08-08
基于Python socket實(shí)現(xiàn)簡(jiǎn)易網(wǎng)絡(luò)聊天室
本文主要介紹了基于Python socket實(shí)現(xiàn)簡(jiǎn)易網(wǎng)絡(luò)聊天室,本文將通過pyqt5作為桌面應(yīng)用框架,socket作為網(wǎng)絡(luò)編程的框架,從而實(shí)現(xiàn)包括客戶端和服務(wù)端的網(wǎng)絡(luò)聊天室的GUI應(yīng)用,需要的可以參考一下2022-07-07
解決python通過cx_Oracle模塊連接Oracle亂碼的問題
今天小編就為大家分享一篇解決python通過cx_Oracle模塊連接Oracle亂碼的問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2018-10-10
OpenCV-Python實(shí)現(xiàn)油畫效果的實(shí)例
OpenCV是功能強(qiáng)大的計(jì)算機(jī)視覺庫,本文主要使用OpenCV來實(shí)現(xiàn)圖片的油畫效果,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-06-06
Python的條件語句與運(yùn)算符優(yōu)先級(jí)詳解
這篇文章主要介紹了Python的條件語句與運(yùn)算符優(yōu)先級(jí),是Python入門學(xué)習(xí)中的基礎(chǔ)知識(shí),需要的朋友可以參考下2015-10-10

