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

python中的getattr函数

时间:2015-04-09 21:38:24      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

getattr(object, name[, default]) -> value

Get a named attribute from an object; getattr(x, ‘y‘) is equivalent to x.y. 
When a default argument is given, it is returned when the attribute doesn‘t 
exist; without it, an exception is raised in that case.

解释的很抽象 告诉我这个函数的作用相当于是

object.name

试了一下getattr(object,name)确实和object.name是一样的功能.只不过这里可以把name作为一个变量去处理

书上的例子很好的说明了这个函数的功用

使用getattr可以轻松实现工厂模式。

例:一个模块支持html、text、xml等格式的打印,根据传入的formate参数的不同,调用不同的函数实现几种格式的输出

1
2
3
4
import statsout 
def output(data, format="text"):                           
    output_function = getattr(statsout, "output_%s" %format
    return output_function(data)

python中的getattr函数

标签:

原文地址:http://www.cnblogs.com/Blaxon/p/4411489.html

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