首页 > 代码库 > python3 函数中的反射
python3 函数中的反射
class Foo: def __init__(self,name): self.name=name def func(self): print(‘--------------.func‘) print(hasattr(Foo,‘func‘)) f=Foo(‘egon‘) print(hasattr(f,‘x‘)) f.x=1 print(getattr(f,‘x‘)) print(getattr(f,‘func‘)) if hasattr(f,‘func‘): aa=getattr(f,‘func‘) aa() print(getattr(f,‘y‘,None)) # f.y=1 #f y 1 setattr(f,‘y‘,1) print(f.__dict__) delattr(f,‘y‘) print(f.__dict__) # print(Foo.__dict__) # print(f.__dict__)
## 打印 True False 1 <bound method Foo.func of <__main__.Foo object at 0x000001B32824D0F0>> --------------.func None {‘x‘: 1, ‘y‘: 1, ‘name‘: ‘egon‘} {‘x‘: 1, ‘name‘: ‘egon‘}
python3 函数中的反射
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。