python中getattribute方法作用是什么?
本文教程操作環境:windows7系統、Python3.9.1,DELLG3電腦。
getattribute介紹
1、python中內建屬性;
2、__getattribute__是屬性訪問攔截器;
3、當類中屬性被訪問時,會自動調用__getattribute__方法;
4、常用于查看權限、打印log日志。
使用實例
classMyClass:
def__init__(self,x):
self.x=x
def__getattribute__(self,item):
print('正在獲取屬性{}'.format(item))
returnsuper(MyClass,self).__getattribute__(item)
>>>obj=MyClass(2)
>>>obj.x
正在獲取屬性x
2
以上就是python中getattribute方法的介紹,大家可以直接調用getattribute方法訪問對象的屬性值哦~更多Python學習教程請關注IT培訓機構:千鋒教育。