午夜剧场伦理_日本一道高清_国产又黄又硬_91黄色网战_女同久久另类69精品国产_妹妹的朋友在线

您的位置:首頁技術文章
文章詳情頁

Python getattr()函數使用方法代碼實例

瀏覽:21日期:2022-07-14 14:59:51

getatter()通過方法名字符串調用方法,這個方法最主要的作用就是實現反射機制,也就是說可以通過字符串獲取方法實例,這樣就可以把一個類可能要調用的方法放到配置文件里,需要的時候進行動態加載。

1: 可以從類中獲取屬性和函數

新建test.py文件,代碼如下:

# encoding:utf-8import sys class GetText(): def __init__(self): pass @staticmethod def A(): print('this is a staticmethod function') def B(self): print('this is a func') c = 'cc desc' if __name__ == ’__main__’: print(sys.modules[__name__]) # <module ’__main__’ from ’D:/腳本項目/lianxi/clazz/test.py’> print(GetText) # <class ’__main__.GetText’> # 獲取函數 print(getattr(GetText, 'A')) # <function GetText.A at 0x00000283C2B75798> # 獲取函數返回值 getattr(GetText, 'A')() # this is a staticmethod function getattr(GetText(), 'A')() # this is a staticmethod function print(getattr(GetText, 'B')) # <function GetText.B at 0x000001371BF55798> # 非靜態方法不可用 # getattr(GetText, 'B')() getattr(GetText(), 'B')() # this is a func print(getattr(GetText, 'c')) # cc desc print(getattr(GetText(), 'c')) # cc desc

2:從模塊中獲取類(通過類名字符串得到類對象)

新建test1.py,代碼如下:

#encoding:utf-8import sysimport testprint(sys.modules[__name__]) # 從模塊中獲取類對象class_name = getattr(test, 'GetText')print(class_name) # <class ’test.GetText’> # 調用類的屬性和函數print(getattr(class_name, 'A')) # <function GetText.A at 0x000001D637365678># 獲取函數返回值getattr(class_name, 'A')() # this is a staticmethod functiongetattr(class_name(), 'A')() # this is a staticmethod function print(getattr(class_name(), 'B')) # <bound method GetText.B of <test.GetText object at 0x0000022D3B9EE348>># getattr(class_name, 'B')() 非靜態方法不可用getattr(class_name(), 'B')() # this is a func # 獲取屬性值print(getattr(class_name, 'c')) # cc descprint(getattr(class_name(), 'c')) # cc desc

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 人成在线视频 | 欧美精品一区二区蜜桃 | 亚洲高清视频在线播放 | www.色小姐com| 六十路av| 亚洲第一国产 | 国产精品久久视频 | 天堂色在线 | 亚洲成人一区二区 | 久色婷婷 | 激情视频在线播放 | 高清二区| 欧美三级欧美成人高清 | 欧美超碰在线 | 播五月综合 | 亚洲男人的天堂网 | 国产原创在线播放 | 天天插天天操天天干 | 三级av在线 | 香蕉视频污污 | 午夜影院入口 | 色播视频在线 | 欧美精品在线免费 | 日韩精品午夜 | 人人射人人干 | 久草免费在线视频观看 | 国产精品伊人久久 | 国产91国语对白在线 | 成人爱爱网站 | 成年人黄色小视频 | 太骚了全程淫语小说 | 欧美日韩在线视频播放 | 亚洲高清av在线 | 久久国产精品偷 | 男人天堂2014 | 欧美另类综合 | 一本一道波多野结衣一区二区 | 中文字幕免费视频 | 国产第6页 | 天天狠天天操 | 国产成人精品一区二区三区四区 |