python之自定义属性访问

https://blog.csdn.net/weixin_45912307/article/details/115535385

# -- encoding: utf-8 --
# @time:    	2021/4/6 23:29
# @Author: 		jsonLiu
# @Email:  		xxxxxxx@qq.com
# @file: 		customattributeaccess
import logging
class CustomAttrVisit(object):
    def __getattr__(self, item):
        # 访问属性时,如果属性不存在(出现AttrError),该方法会被触发
        print("__getattr__被调用")
        try:
            # super().__getattribute__(item)  # super继承父类不需self
            object.__getattribute__(self,item) # object调实例需要self
        except Exception as e:
             logging.error("call __getattr__ error:{}".format(e))

    def __getattribute__(self, item):
        # 访问属性的时候,第一时间触发该方法去找属性
        print("__getattribute__被调用")
        return super().__getattribute__(item) # 必须return,否则打印为None
    def __setattr__(self, key, value):
        # 给对象设置属性时触发
        if key == 'age':
            super().__setattr__(key,18)
        else:
            print("__setattr__被调用")
            super().__setattr__(key,value)
    def __delattr__(self, item):
        # 删除属性时被触发
        print("__delattr__被调用")
        super().__delattr__(item)

CAV = CustomAttrVisit()
CAV.name = 'python' # 触发setattr
print(CAV.name) # 触发 getattribute
print(CAV.age) # __getattribute__和__getattr__被调用
del CAV.age
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值