python中getattr函数使用方法 getattr实现工厂模式


Posted in Python onJanuary 20, 2014

看了下函数本身的doc

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参数的不同,调用不同的函数实现几种格式的输出

import statsout 
def output(data, format="text"):                           
    output_function = getattr(statsout, "output_%s" %format) 
    return output_function(data)
[code]
这个例子中可以根据传入output函数的format参数的不同 去调用statsout模块不同的方法(用格式化字符串实现output_%s)
返回的是这个方法的对象 就可以直接使用了 如果要添加新的格式 只需要在模块中写入新的方法函数 在调用output函数时使用新的参数就可以使用不同的格式输出
确实很方便

为了加深对getattr函数的理解 转载一篇英文的说明
Python's getattr function is used to fetch an attribute from an object, using a string object instead of an identifier to identify the attribute. In other words, the following two statements are equivalent:
[code]
value = obj.attribute
value = getattr(obj, "attribute")
If the attribute exists, the corresponding value is returned. If the attribute does not exist, you get an AttributeError exception instead.
The getattr function can be used on any object that supports dotted notation (by implementing the __getattr__ method). This includes class objects, modules, and even function objects.
path = getattr(sys, "path")
doc = getattr(len, "__doc__")
The getattr function uses the same lookup rules as ordinary attribute access, and you can use it both with ordinary attributes and methods:
result = obj.method(args)
func = getattr(obj, "method")
result = func(args)
or, in one line:
result = getattr(obj, "method")(args)
Calling both getattr and the method on the same line can make it hard to handle exceptions properly. To avoid confusing AttributeError exceptions raised by getattr with similar exceptions raised inside the method, you can use the following pattern:
try:
    func = getattr(obj, "method")
except AttributeError:
    ... deal with missing method ...
else:
    result = func(args)
The function takes an optional default value, which is used if the attribute doesn't exist. The following example only calls the method if it exists:
func = getattr(obj, "method", None)
if func:
    func(args)
Here's a variation, which checks that the attribute is indeed a callable object before calling it.
func = getattr(obj, "method", None)
if callable(func):
    func(args)
Python 相关文章推荐
Python使用自带的ConfigParser模块读写ini配置文件
Jun 26 Python
使用Kivy将python程序打包为apk文件
Jul 29 Python
机器学习10大经典算法详解
Dec 07 Python
Anaconda 离线安装 python 包的操作方法
Jun 11 Python
flask框架路由常用定义方式总结
Jul 23 Python
django 环境变量配置过程详解
Aug 06 Python
python实现通过flask和前端进行数据收发
Aug 22 Python
Python实现序列化及csv文件读取
Jan 19 Python
Python rabbitMQ如何实现生产消费者模式
Aug 24 Python
pycharm 使用anaconda为默认环境的操作
Feb 05 Python
Python中json.dumps()函数的使用解析
May 17 Python
Python使用MapReduce进行简单的销售统计
Apr 22 Python
python字符串加密解密的三种方法分享(base64 win32com)
Jan 19 #Python
python实现人人网登录示例分享
Jan 19 #Python
使用BeautifulSoup爬虫程序获取百度搜索结果的标题和url示例
Jan 19 #Python
压缩包密码破解示例分享(类似典破解)
Jan 17 #Python
vc6编写python扩展的方法分享
Jan 17 #Python
python的urllib模块显示下载进度示例
Jan 17 #Python
Python中for循环详解
Jan 17 #Python
You might like
CentOS下PHP7的编译安装及MySQL的支持和一些常见问题的解决办法
2015/12/17 PHP
PHP Oauth授权和本地加密实现方法
2016/08/12 PHP
Zend Framework路由器用法实例详解
2016/12/11 PHP
jquery中dom操作和事件的实例学习 下拉框应用
2011/12/01 Javascript
jquery 按钮状态效果 正常、移上、按下
2013/08/12 Javascript
JS 作用域与作用域链详解
2015/04/07 Javascript
jQuery寻找n以内完全数的方法
2015/06/24 Javascript
纯css实现窗户玻璃雨滴逼真效果
2015/08/23 Javascript
jQuery实现鼠标滑过图片移动特效
2016/12/08 Javascript
easyui combotree加载静态数据问题(选不上)解决方法
2016/12/26 Javascript
JS简单验证上传文件类型的方法
2017/04/17 Javascript
JavaScript解析任意形式的json树型结构展示
2017/07/23 Javascript
详解在Vue中有条件地使用CSS类
2017/09/30 Javascript
Vue项目中设置背景图片方法
2018/02/21 Javascript
vue2.0移动端滑动事件vue-touch的实例代码
2018/11/27 Javascript
vue中实现点击按钮滚动到页面对应位置的方法(使用c3平滑属性实现)
2019/12/29 Javascript
微信小程序canvas开发水果老虎机的思路详解
2020/02/07 Javascript
vue 保留两位小数 不能直接用toFixed(2) 的解决
2020/08/07 Javascript
在Django中创建动态视图的教程
2015/07/15 Python
Python黑帽编程 3.4 跨越VLAN详解
2016/09/28 Python
使用Python对MySQL数据操作
2017/04/06 Python
Python编程之Re模块下的函数介绍
2017/10/28 Python
python中正则表达式 re.findall 用法
2018/10/23 Python
使用Python实现将多表分批次从数据库导出到Excel
2020/05/15 Python
详解python爬取弹幕与数据分析
2020/11/14 Python
Fossil美国官网:Fossil手表、手袋、珠宝及配件
2017/02/01 全球购物
Kneipp克奈圃美国官网:德国百年精油配方的传承
2018/02/07 全球购物
英国快时尚女装购物网站:PrettyLittleThing
2018/08/15 全球购物
个人素质的自我评价分享
2013/12/16 职场文书
开门红主持词
2014/04/02 职场文书
2014年党员教师自我剖析材料
2014/09/30 职场文书
合伙购房协议样本
2014/10/06 职场文书
2015年销售人员工作总结
2015/04/07 职场文书
2015年教师业务工作总结
2015/05/26 职场文书
MySQL读取JSON转换的方式
2022/03/18 MySQL
基于Android10渲染Surface的创建过程
2022/08/14 Java/Android