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

python 属性函数分析 - hasattr()、 getattr()、 setattr()

时间:2017-10-09 22:36:47      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:创建   trace   val   ast   stdin   file   attr   xiaohua   mod   

一、hasattr(object, name)

  判断一个对象里面是否有name属性或name方法,返回bool值,有name属性或方法返回True,否则返回False。

>>> class test():
...     name="xiaohua"
...     def run(self):
...             return "HelloWord"
...
>>> t=test()
>>> hasattr(t, "name") #判断对象有name属性
True
>>> hasattr(t, "run")  #判断对象有run方法
True
>>>

 二、getattr(object, name[,default])

  获取对象object的属性或方法;

  如果存在属性值,则可打印(返回)属性值;如果存在方法,则打印(返回)方法的内存地址(可在返回的方法后面加上一对括号(),调用方法);获取不存在的属性,如果设置默认值则返回默认值,否则报错。

>>> class test():
...     name="xiaohua"
...     def run(self):
...             return "HelloWord"
...
>>> t=test()
>>> getattr(t, "name") #获取name属性,存在就打印出来。
‘xiaohua‘
>>> getattr(t, "run")  #获取run方法,存在就打印出方法的内存地址。
<bound method test.run of <__main__.test instance at 0x0269C878>>
>>> getattr(t, "run")()  #获取run方法,后面加括号可以将这个方法运行。
‘HelloWord‘
>>> getattr(t, "age")  #获取一个不存在的属性。
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: test instance has no attribute ‘age‘
>>> getattr(t, "age","18")  #若属性不存在,返回一个默认值。
‘18‘
>>>

 三、setattr(object, name, values)

  给对象object的属性赋值,若属性不存在,先创建再赋值。

  没有返回值。

>>> class test():
...     name="xiaohua"
...     def run(self):
...             return "HelloWord"
...
>>> t=test()
>>> hasattr(t, "age")   #判断属性是否存在
False
>>> setattr(t, "age", "18")   #为属相赋值,并没有返回值
>>> hasattr(t, "age")    #属性存在了
True
>>>

 四、综合使用

  判断一个object对象的属性是否存在,若不存在就添加该属性。

>>> class test():
...     name="xiaohua"
...     def run(self):
...             return "HelloWord"
...
>>> t=test()
>>> getattr(t, "age")    #age属性不存在
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: test instance has no attribute ‘age‘
>>> getattr(t, "age", setattr(t, "age", "18")) #age属性不存在时,设置该属性
‘18‘
>>> getattr(t, "age")  #可检测设置成功
‘18‘
>>>

 

python 属性函数分析 - hasattr()、 getattr()、 setattr()

标签:创建   trace   val   ast   stdin   file   attr   xiaohua   mod   

原文地址:http://www.cnblogs.com/xiaofeiIDO/p/7642934.html

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