会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Deaseyy
博客园
首页
新随笔
联系
管理
订阅
2020年9月15日
__getattr__ 和 __getattribute__ 区别
摘要: 这两个是类对象的魔法函数,在访问对象属性的时候会被调用 1 class A(object): 2 def __init__(self, x): 3 self.x = x 4 5 def __getattr__(self, item): 6 print('run __getattr__') 7 ret
阅读全文
posted @ 2020-09-15 23:25 Deaseyy
阅读(198)
评论(0)
推荐(0)
编辑
公告