导语:
本文主要介绍了关于python中getattribute方法作用是什么?的相关知识,包括pythongetattribute方法怎么用,以及python中的attribute这些编程知识,希望对大家有参考作用。
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
getattribute介绍
1、python中内建属性;
2、__getattribute__是属性访问拦截器;
3、当类中属性被访问时,会自动调用__getattribute__方法;
4、常用于查看权限、打印log日志。
使用实例
class MyClass:
def __init__(self, x):
self.x = x
def __getattribute__(self, item):
print('正在获取属性{}'.format(item))
return super(MyClass, self).__getattribute__(item)
>>> obj = MyClass(2)
>>> obj.x
正在获取属性x
2
以上就是python中
getattribute方法的介绍,大家可以直接
调用getattribute方法访问对象的属性值哦~
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python切片函数的使用09/15
- ♥ python列表操作详解10/15
- ♥ 如何在python中编写csv文件08/12
- ♥ python导入第三方模块时的注意点01/07
- ♥ 如何在python中编写绝对路径和相对路径09/22
- ♥ 什么是python Floyd算法01/15
内容反馈