一文读懂Python中的映射
发布时间:2025-10-10 17:49:05

python中的反射功能由以下四个内置函数提供:hasattr、getattr、setattr、delattr,将四个函数分别用于对象内部执行:检查是否包含成员、获取成员、设置成员和删除成员。
获取成员: getattr
classFoo:
def__init__(self,name,age):
self.name=name
self.age=age
obj=Foo('klvchen',18)
inp=input('>>>')
v=getattr(obj,inp)
print(v)运行结果:
>>>name klvchen
classFoo:
def__init__(self,name,age):
self.name=name
self.age=age
defshow(self):
return"%s-%s"%(self.name,self.age)
obj=Foo('klvchen',18)
func=getattr(obj,'show')
print(func)
res=func()
print(res)运行结果:
<boundmethodFoo.showof<__main__.Fooobjectat000000024F69288>> klvchen-18
检查是否包含成员: hasattr
classFoo:
def__init__(self,name,age):
self.name=name
self.age=age
defshow(self):
return"%s-%s"%(self.name,self.age)
obj=Foo('klvchen',18)
print(hasattr(obj,'name1'))运行结果:
False
设置成员: setattr
classFoo:
def__init__(self,name,age):
self.name=name
self.age=age
defshow(self):
return"%s-%s"%(self.name,self.age)
obj=Foo('klvchen',18)
#print(hasattr(obj,'name1'))
setattr(obj,'key','value')
print(obj.key)运行结果:
value
相关推荐:Python视频教程
删除成员: delattr
classFoo:
def__init__(self,name,age):
self.name=name
self.age=age
defshow(self):
return"%s-%s"%(self.name,self.age)
obj=Foo('klvchen',18)
print(obj.name)
delattr(obj,'name')
print(obj.name)运行结果:
klvchen AttributeError:'Foo'objecthasnoattribute'name'
以字符串的形式操作对象中的成员
classFoo: stat='666' def__init__(self,name,age): self.name=name self.age=age res=getattr(Foo,'stat') print(res)
运行结果:
666
创建两个文件,s1.py 和 s2.py
s2.py 内容如下:
NAME='klvchen' deffunc(): return'func'
s1.py 内容如下:
imports2 res1=getattr(s2,'NAME') print(res1) res2=getattr(s2,'func') result=res2() print(result)
运行 s1.py 文件:
klvchen func
创建两个文件,s1.py 和 s2.py
s2.py 内容如下:
NAME='klvchen' deffunc(): return'cwe' classFoo: def__init__(self): self.name=666
s1.py 内容如下:
imports2 res1=getattr(s2,'NAME') print(res1) res2=getattr(s2,'func') result=res2() print(result) cls=getattr(s2,'Foo') print(cls) obj=cls() print(obj) print(obj.name)
运行 s1.py 运行结果:文件:
klvchen cwe <class's2.Foo'> <s2.Fooobjectat00001CFCDB248> 666
创建两个文件,s1.py 和 s2.py
s2.py 内容如下:
deff1(): return'首页' deff2(): return'新闻' deff3(): return'精华'
s1.py 内容如下:
imports2
inp=input('请输入要查看的URL:')
ifhasattr(s2,inp):
func=getattr(s2,inp)
result=func()
print(result)
else:
print('404')运行 s1.py 运行结果:文件:
请输入要查看的URL:f1 首页
下一篇 python集合是否可变总结
