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 相关文章推荐
在GitHub Pages上使用Pelican搭建博客的教程
Apr 25 Python
python中__call__内置函数用法实例
Jun 04 Python
浅谈编码,解码,乱码的问题
Dec 30 Python
python输入错误密码用户锁定实现方法
Nov 27 Python
Python元组及文件核心对象类型详解
Feb 11 Python
python3个性签名设计实现代码
Jun 19 Python
Python函数基础实例详解【函数嵌套,命名空间,函数对象,闭包函数等】
Mar 30 Python
Python面向对象程序设计多继承和多态用法示例
Apr 08 Python
Python集中化管理平台Ansible介绍与YAML简介
Jun 12 Python
详解Python 4.0 预计推出的新功能
Jul 26 Python
python PyAUtoGUI库实现自动化控制鼠标键盘
Sep 09 Python
python 基于pygame实现俄罗斯方块
Mar 02 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
ThinkPHP 连接Oracle数据库的详细教程[全]
2012/07/16 PHP
PHP面向对象继承用法详解(优化与减少代码重复)
2016/12/02 PHP
php 变量引用与变量销毁机制详细介绍
2016/12/05 PHP
完美解决Thinkphp3.2中插入相同数据的问题
2017/08/01 PHP
PHP实现二维数组中的查找算法小结
2018/06/09 PHP
javascript写的日历类(基于pj)
2010/12/28 Javascript
jquery 扑捉回车键事件代码
2014/04/24 Javascript
jquery trigger伪造a标签的click事件取代window.open方法
2014/06/23 Javascript
javascript面向对象之共享成员属性与方法及prototype关键字用法
2015/01/13 Javascript
jquery实现submit提交表单
2015/02/03 Javascript
JS实现仿新浪黄色经典滑动门效果代码
2015/09/27 Javascript
Bootstrap模态框水平垂直居中与增加拖拽功能
2016/11/09 Javascript
JS及JQuery对Html内容编码,Html转义
2017/02/17 Javascript
Vue2.0利用 v-model 实现组件props双向绑定的优美解决方案
2017/03/13 Javascript
npm国内镜像 安装失败的几种解决方案
2017/06/04 Javascript
js实现随机点名系统(实例讲解)
2017/10/18 Javascript
vue 动态修改a标签的样式的方法
2018/01/18 Javascript
用图片替换checkbox原始样式并实现同样的功能
2018/11/15 Javascript
微信小程序提交form操作示例
2018/12/30 Javascript
Django+Vue实现WebSocket连接的示例代码
2019/05/28 Javascript
13 个npm 快速开发技巧(推荐)
2019/07/04 Javascript
Vue+Element ui 根据后台返回数据设置动态表头操作
2020/09/21 Javascript
解决vue-cli输入命令vue ui没效果的问题
2020/11/17 Javascript
python 数据的清理行为实例详解
2017/07/12 Python
Python实现的井字棋(Tic Tac Toe)游戏示例
2018/01/31 Python
python3 破解 geetest(极验)的滑块验证码功能
2018/02/24 Python
mac PyCharm添加Python解释器及添加package路径的方法
2018/10/29 Python
Python使用QQ邮箱发送邮件实例与QQ邮箱设置详解
2020/02/18 Python
前端H5 Video常见使用场景简介
2020/08/21 HTML / CSS
Oakley官网:运动太阳镜、雪镜和服装
2016/09/30 全球购物
马来西亚在线时尚女装商店:KEI MAG
2017/09/28 全球购物
介绍下static、final、abstract区别
2015/01/30 面试题
农村党支部书记司法四风问题对照检查材料
2014/09/26 职场文书
2015年八一建军节活动总结
2015/03/20 职场文书
忠犬八公的故事观后感
2015/06/05 职场文书
祝寿主持词
2015/07/02 职场文书