码迷,mamicode.com
首页 > 编程语言 > 详细

Python之反射练习

时间:2019-10-03 01:05:49      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:att   tool   def   code   blog   字符   logs   color   cli   

技术图片
# 什么是反射?可以用字符串的方式去访问对象的属性
class Test():
    _name = "sss"
    def fun(self):
        return "Helloword"

t = Test()
# print(hasattr(t,"_name"))   #hasattr(obj,name)#查看类里面有没有name属性
# print(hasattr(t,"fun"))  #True

if hasattr(t,"_name"):
    print(getattr(t,"_name"))   #sss
if hasattr(t,"fun"):
    print(getattr(t,"fun")())  #Helloword
    if  not hasattr(t,"age"):  #如果属性不存在
        print("没有该属性和方法,我来给设置一个")
        setattr(t,"age","18")  #给t对象设置一个默认值,默认age=18
        print(getattr(t,"age"))
技术图片

 

Python之反射练习

标签:att   tool   def   code   blog   字符   logs   color   cli   

原文地址:https://www.cnblogs.com/maaosheng/p/11618784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!