python面向对象--反射
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python面向对象--反射相关的知识,希望对你有一定的参考价值。
1.反射包含四个函数hasattr(),getattr(),setattr(),delattr()
2.hasattr(o,name)判断类中是否存在name属性或方法
class test(object):
def __init__(self):
self.name=‘张三‘
def show(self):
print(‘姓名:%s‘%self.name)
T=test()
print(hasattr(T,‘show‘))
print(hasattr(T,‘name‘))
print(hasattr(T,‘name1‘))
>>:
True
True
False
3.getattr(o,name)根据name字符串取得对应类中的属性或方法
class test(object):
def __init__(self):
self.name=‘张三‘
def show(self):
print(‘姓名:%s‘%self.name)
T=test()
res=getattr(T,‘show‘)
res()
>>:
姓名:张三
4.setattr(o,name,value)设置类的属性值
class test(object):
def __init__(self):
self.name=‘张三‘
def show(self):
print(‘姓名:%s‘%self.name)
T=test()
setattr(T,‘name‘,‘李四‘)
print(T.name)
>>:
李四
5.delattr(o,name)删除类的属性或方法
class test(object):
def __init__(self):
self.name=‘张三‘
def show(self):
print(‘姓名:%s‘%self.name)
T=test()
delattr(T,‘name‘)
print(T.name)
>>:
报错
以上是关于python面向对象--反射的主要内容,如果未能解决你的问题,请参考以下文章