千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:郑州千锋IT培训  >  技术干货  >  python中getattribute方法作用是什么?

python中getattribute方法作用是什么?

来源:千锋教育
发布人:xqq
时间: 2023-11-14 18:40:55

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培训机构:千锋教育。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

python__slots__的禁用实例

2023-11-14

pythontry语句的工作过程

2023-11-14

pythonrandom中的随机函数

2023-11-14

最新文章NEW

python如何使用TemporaryFile()方法创建临时文件?

2023-11-14

python中sys模块是什么?

2023-11-14

python的ndarray与pandas的series如何相互转换?

2023-11-14

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>