__getattribute__

class Foo:
    def __init__(self,x):
        self.x = x
    def __getattribute__(self, item):
        print('不管是否纯在,我都会执行')

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

  

posted @ 2016-12-27 10:26  打不死的--蟑螂  阅读(97)  评论(0编辑  收藏  举报