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 相关文章推荐
pymongo为mongodb数据库添加索引的方法
May 11 Python
Python3一行代码实现图片文字识别的示例
Jan 15 Python
Tensorflow 实现修改张量特定元素的值方法
Jul 30 Python
Python3爬虫爬取英雄联盟高清桌面壁纸功能示例【基于Scrapy框架】
Dec 05 Python
python读写csv文件方法详细总结
Jul 05 Python
Flask-WTF表单的使用方法
Jul 12 Python
对django views中 request, response的常用操作详解
Jul 17 Python
python实现比对美团接口返回数据和本地mongo数据是否一致示例
Aug 09 Python
Python自动化导出zabbix数据并发邮件脚本
Aug 16 Python
Python谱减法语音降噪实例
Dec 18 Python
Python魔术方法专题
Jun 19 Python
python接口自动化之ConfigParser配置文件的使用详解
Aug 03 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
php的数组与字符串的转换函数整理汇总
2013/07/18 PHP
[原创]php逐行读取txt文件写入数组的方法
2015/07/02 PHP
PHP实现获取某个月份周次信息的方法
2015/08/11 PHP
Session 失效的原因汇总及解决丢失办法
2015/09/30 PHP
PHP识别二维码的方法(php-zbarcode安装与使用)
2016/07/07 PHP
Laravel关联模型中过滤结果为空的结果集(has和with区别)
2018/10/18 PHP
PHP实现获取url地址中顶级域名的方法示例
2019/06/05 PHP
laravel使用数据库测试注意事项
2020/04/10 PHP
下拉列表select 由左边框移动到右边示例
2013/12/04 Javascript
js分页工具实例
2015/01/28 Javascript
JavaScript多图片上传案例
2015/09/28 Javascript
基于jquery animate操作css样式属性小结
2015/11/27 Javascript
jQuery Easyui Tabs扩展根据自定义属性打开页签
2016/08/15 Javascript
基于jQuery和Bootstrap框架实现仿知乎前端动态列表效果
2016/11/09 Javascript
Javascript中的async awai的用法
2017/05/17 Javascript
vue使用prop可以渲染但是打印台报错的解决方式
2019/11/13 Javascript
原生js实现表格循环滚动
2020/11/24 Javascript
JavaScript 中的执行上下文和执行栈实例讲解
2021/02/25 Javascript
python time模块用法实例详解
2014/09/11 Python
CentOS安装pillow报错的解决方法
2016/01/27 Python
Python数据结构与算法之列表(链表,linked list)简单实现
2017/10/30 Python
python中使用xlrd读excel使用xlwt写excel的实例代码
2018/01/31 Python
Python pyinotify日志监控系统处理日志的方法
2018/03/08 Python
python判断设备是否联网的方法
2018/06/29 Python
Python实现Selenium自动化Page模式
2019/07/14 Python
使用keras时input_shape的维度表示问题说明
2020/06/29 Python
Python 如何查找特定类型文件
2020/08/17 Python
Html+Css+Jquery实现左侧滑动拉伸导航菜单栏的示例代码
2020/03/17 HTML / CSS
巧克力领导品牌瑞士莲美国官网:Lindt Chocolate美国
2016/08/25 全球购物
家长会主持词开场白
2014/03/18 职场文书
2014年小学生迎国庆65周年演讲稿
2014/09/27 职场文书
安全生产标语大全
2014/10/06 职场文书
先进人物事迹材料
2014/12/29 职场文书
《围炉夜话》110句人生箴言,精辟有内涵,引人深思
2019/10/23 职场文书
使用php的mail()函数实现发送邮件功能
2021/06/03 PHP
详解nginx进程锁的实现
2021/06/14 Servers