码迷,mamicode.com
首页 > 其他好文 > 详细

getattribute

时间:2020-05-10 17:05:46      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:get   attr   pre   coding   bsp   class   ret   foo   return   

getattribute

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

    def __getattr__(self, item):
        print(执行的是我)
        # return self.__dict__[item]

f1=Foo(10)
print(f1.x)
f1.xxxxxx #不存在的属性访问,触发__getattr__
class Foo:
    def __init__(self,x):
        self.x=x

    def __getattribute__(self, item):
        print(不管是否存在,我都会执行)

f1=Foo(10)
f1.x
f1.xxxxxx  
#_*_coding:utf-8_*_
__author__ = Linhaifeng

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(哈哈)

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

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


 

getattribute

标签:get   attr   pre   coding   bsp   class   ret   foo   return   

原文地址:https://www.cnblogs.com/Manuel/p/12863580.html

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