Python 标准库中 functools库中有非常多对方法非常有有操作的封装,partial Objects就是当中之中的一个,他是对方法參数默认值的改动。
以下就看下简单的应用測试。
#!/usr/bin/env python # -*- coding: utf-8 -*- #python2.7x #partial.py #authror: orangleliu ''' functools 中Partial能够用来改变一个方法默认參数 1 改变原有默认值參数的默认值 2 给原来没有默认值的參数添加默认值 ''' def foo(a,b=0) : ''' int add' ''' print a + b #user default argument foo(1) #change default argument once foo(1,1) #change function's default argument, and you can use the function with new argument import functools foo1 = functools.partial(foo, b=5) #change "b" default argument foo1(1) foo2 = functools.partial(foo, a=10) #give "a" default argument foo2() ''' foo2 is a partial object,it only has three read-only attributes i will list them ''' print foo2.func print foo2.args print foo2.keywords print dir(foo2) ##默认情况下partial对象是没有 __name__ __doc__ 属性,使用update_wrapper 从原始方法中加入属性到partial 对象中 print foo2.__doc__ ''' 运行结果: partial(func, *args, **keywords) - new function with partial application of the given arguments and keywords. ''' functools.update_wrapper(foo2, foo) print foo2.__doc__ ''' 改动为foo的文档信息了 '''
这样假设我们使用一个方法总是须要默认几个參数的话就能够。先做一个封装然后不用每次都设置同样的參数了。
本文出自 “orangleliu笔记本” 博客,请务必保留此出处http://blog.csdn.net/orangleliu/article/details/38656585