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

关于__getattribute__

时间:2019-05-05 14:41:16      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:object   self   ==   lse   att   bsp   item   int   cat   

先看一个案例

class Tree(object):
    def __init__(self,name):
        self.name=name
        self.cate=plant
    def __getattribute__(self, item):
        if  item==大树:
            print(log 大树)
            return 我爱大树
        else:
            return object.__getattribute__(self,item)

aa=Tree(rrrr)
print(aa.name)
print(aa.cate)

运行结果:

rrrr
plant

 

关于__getattribute__

标签:object   self   ==   lse   att   bsp   item   int   cat   

原文地址:https://www.cnblogs.com/Kerryworld/p/10812798.html

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