码迷,mamicode.com
首页 > 编程语言 > 详细

Python进阶-----类的内置方法__getattribute__

时间:2018-10-14 23:57:31      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:pre   自定义异常   div   异常   elf   getattr   self   执行   --   

__getattribute__ 方法功能:

1 调用属性会触发该功能,属性存在则会返回相应的值;
2 如果属性不存在则会抛出异常AttributeError,所以可以自定义异常信息
3 存在__getattr__,若有异常出现则会传递给__getattr__用来接收,执行操作

class Foo:
    def __init__(self,x):
        self.x=x

    def __getattr__(self, item):
        print(执行的是我)
        # return self.__dict__[item]
    def __getattribute__(self, item):         #调取属性无论是否存在均会触发它
        print(不管是否存在,我都会执行)
        raise AttributeError(哈哈)          #其实就是python内部的处理方式

f1=Foo(10)
f1.x
f1.xxxxxx

#当__getattribute__与__getattr__同时存在,只会执行__getattrbute__,除非__getattribute__在执行过程中抛出异常AttributeError

 

Python进阶-----类的内置方法__getattribute__

标签:pre   自定义异常   div   异常   elf   getattr   self   执行   --   

原文地址:https://www.cnblogs.com/Meanwey/p/9788821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!