- 浏览: 247232 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (127)
- vim (3)
- python (44)
- pymysql (1)
- mysql (9)
- macvim (1)
- erlang (3)
- twisted (0)
- tornado (5)
- django (7)
- postgresql (5)
- sql (1)
- java (7)
- tech (4)
- cache (1)
- lifestyle (3)
- html (1)
- ubuntu (2)
- rabbitmq (1)
- algorithm (8)
- Linux (4)
- Pythonista (1)
- thread (1)
- sort (6)
- 设计模式 (1)
- search (1)
- Unix (6)
- Socket (3)
- C (2)
- web (1)
- gc (1)
- php (10)
- macos (1)
最新评论
-
2057:
这个程序有bug。
查找算法学习之二分查找(Python版本)——BinarySearch -
dotjar:
NB
一个Python程序员的进化[转]
Closure:如果在一个内部函数里,对在外部作用域(但不是在全局作用域)的变量进行引用,那么内部函数就被认为是闭包(closure)。它只不过是个"内层"的函数,由一个名字(变量)来指代,而这个名字(变量)对于“外层”包含它的函数而言,是本地变量。
demo:
详细例子可见http://ivan.truemesh.com/archives/000411.html
Q:Decorators are an example of closures?
demo:
Q:what does functools.wraps do?
functools.partial is a useful utility function that copies attributes from the wrapped function to the wrapping function.
The functools.wraps function is a nice little convenience function that makes the wrapper function (i.e., the return value from the decorator) look like the function it is wrapping. This involves copying/updating a bunch of the double underscore attributes—specifically__module__, __name__, __doc__, and __dict__.
源码你会发现wraps调用的是一个对partial(update_wrapper, ...)的简单包装。
partial主要是用来修改函数签名,使一些参数固化,以提供一个更简单的函数供以后调用 update_wrapper是wraps的主要功能提供者,它负责考贝原函数的属性,默认是:'__module__', '__name__', '__doc__', '__dict__'。
有关functools可以参考我之前的整理:
http://2057.iteye.com/blog/1798472
详细的介绍closures以及问题可参考:
http://blog.csdn.net/marty_fu/article/details/7679297
参考资料:
http://ivan.truemesh.com/archives/000392.html
http://ivan.truemesh.com/archives/000411.html
http://ivan.truemesh.com/archives/000425.html
http://feilong.me/2012/06/interesting-python-closures
http://en.wikipedia.org/wiki/Python_syntax_and_semantics
http://blaag.haard.se/Python-Closures-and-Decorators--Pt--1/
http://blaag.haard.se/Python-Closures-and-Decorators--Pt--2/
http://www.ibm.com/developerworks/cn/linux/l-cn-closure/index.html
http://stackoverflow.com/questions/233673/lexical-closures-in-python
http://stackoverflow.com/questions/308999/what-does-functools-wraps-do
http://stackoverflow.com/questions/2796855/python-closures-example-code
http://blogs.oucs.ox.ac.uk/inapickle/2012/01/05/python-decorators-with-optional-arguments/
demo:
#-*-coding:utf-8-*- class Employee(object): def __init__(self,is_manager=False,salary=1000): self.is_manager = is_manager self.salary = salary class Employees: def __init__(self,employees): self.employees = employees def do(self,block): for e in self.employees: block.value(e) def anonymous_function(employee): if employee.is_manager: employee.salary = 2000 def total_cost_of_managers(employees): #TODO why not user total = 0 will raise Exception(UnboundLocalError: local variable 'total' referenced before assignment)? total = [0] def anonymous_function(employee): if employee.is_manager: total[0] = total[0]+employee.salary map(anonymous_function, employees) return total[0] def total_cost_of_managers_2(employees): total = [0] class AnonymousClass: def value(self, employee): if employee.is_manager:total[0] = total[0]+employee.salary employees.do(AnonymousClass()) return total[0] def total_cost_of_managers_3(employees): class AnonymousClass: def __init__(self): self.total = 0 def value(self, employee): if employee.is_manager:self.total = self.total+employee.salary block = AnonymousClass() employees.do(block) return block.total def total_cost_of_managers_4(employees): class AnonymousClass: def __init__(self): self.total = 0 def __call__(self, employee): if employee.is_manager:self.total = self.total+employee.salary block = AnonymousClass() map(block,employees) return block.total def total_cost_of_managers_5(employees): total = 0 for employee in employees: if employee.is_manager:total = total+employee.salary return total employee = Employee() employee.is_manager = True employee2 = Employee() employees = [employee,employee2] #map(lambda e:e.is_manager and e.salary>1000 and e.salary+1000,employees) map(anonymous_function,employees) print 'total employee\'s salary is',employee.salary print 'total manager\'s cost is',total_cost_of_managers(employees) employees=Employees(employees) print total_cost_of_managers_2(employees) print total_cost_of_managers_3(employees) print total_cost_of_managers_4([employee,employee2]) print total_cost_of_managers_5([employee,employee2])
详细例子可见http://ivan.truemesh.com/archives/000411.html
Q:Decorators are an example of closures?
demo:
#-*-coding:utf-8-*- import functors def foo(f): @functools.wraps(f) def wraps(*args,**kwargs): print 'do something …' return f(*args,**kwargs) return wraps @foo class Bar: def __init__(self): self.name = 'foo is bar' bar = Bar() print bar.name
Q:what does functools.wraps do?
functools.partial is a useful utility function that copies attributes from the wrapped function to the wrapping function.
The functools.wraps function is a nice little convenience function that makes the wrapper function (i.e., the return value from the decorator) look like the function it is wrapping. This involves copying/updating a bunch of the double underscore attributes—specifically__module__, __name__, __doc__, and __dict__.
def update_wrapper(wrapper, wrapped, assigned = WRAPPER_ASSIGNMENTS, updated = WRAPPER_UPDATES): """Update a wrapper function to look like the wrapped function wrapper is the function to be updated wrapped is the original function assigned is a tuple naming the attributes assigned directly from the wrapped function to the wrapper function (defaults to functools.WRAPPER_ASSIGNMENTS) updated is a tuple naming the attributes of the wrapper that are updated with the corresponding attribute from the wrapped function (defaults to functools.WRAPPER_UPDATES) """ for attr in assigned: setattr(wrapper, attr, getattr(wrapped, attr)) for attr in updated: getattr(wrapper, attr).update(getattr(wrapped, attr, {})) # Return the wrapper so this can be used as a decorator via partial() return wrapper def wraps(wrapped, assigned = WRAPPER_ASSIGNMENTS, updated = WRAPPER_UPDATES): """Decorator factory to apply update_wrapper() to a wrapper function Returns a decorator that invokes update_wrapper() with the decorated function as the wrapper argument and the arguments to wraps() as the remaining arguments. Default arguments are as for update_wrapper(). This is a convenience function to simplify applying partial() to update_wrapper(). """ return partial(update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated)
源码你会发现wraps调用的是一个对partial(update_wrapper, ...)的简单包装。
partial主要是用来修改函数签名,使一些参数固化,以提供一个更简单的函数供以后调用 update_wrapper是wraps的主要功能提供者,它负责考贝原函数的属性,默认是:'__module__', '__name__', '__doc__', '__dict__'。
有关functools可以参考我之前的整理:
http://2057.iteye.com/blog/1798472
详细的介绍closures以及问题可参考:
http://blog.csdn.net/marty_fu/article/details/7679297
参考资料:
http://ivan.truemesh.com/archives/000392.html
http://ivan.truemesh.com/archives/000411.html
http://ivan.truemesh.com/archives/000425.html
http://feilong.me/2012/06/interesting-python-closures
http://en.wikipedia.org/wiki/Python_syntax_and_semantics
http://blaag.haard.se/Python-Closures-and-Decorators--Pt--1/
http://blaag.haard.se/Python-Closures-and-Decorators--Pt--2/
http://www.ibm.com/developerworks/cn/linux/l-cn-closure/index.html
http://stackoverflow.com/questions/233673/lexical-closures-in-python
http://stackoverflow.com/questions/308999/what-does-functools-wraps-do
http://stackoverflow.com/questions/2796855/python-closures-example-code
http://blogs.oucs.ox.ac.uk/inapickle/2012/01/05/python-decorators-with-optional-arguments/
发表评论
-
macos 10.9.2 clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command
2014-03-25 19:13 1760方法总是有的,当然需要你去寻找。 当然如果花费太多的时间在一件 ... -
PostgreSQL psycopg2:IndexError: tuple index out of range
2014-01-09 17:04 2231Postgresql psycopg2使用like查询的时候 ... -
Python 迭代器和生成器
2013-10-15 23:09 2850迭代器 迭代器只不过是一个实现迭代器协议的容器对象。它基于两个 ... -
Python时间模块
2013-10-15 23:03 3470time模块 时间模块中最常用的一个函数就是获取当前时间的函数 ... -
Python装饰器
2013-10-15 22:59 1570编写自定义装饰器有许多方法,但最简单和最容易理解的方法是编写一 ... -
python list
2013-10-15 22:56 1254简单总结以及整理如下: >>> dir( ... -
Python Excel
2013-09-10 17:21 976安装lib easy_install xlrd def ... -
排序算法学习(python版本)之堆排序(HeapSort)
2013-07-01 22:54 1997Contains: 堆排序以及堆排序的应用 堆排序(Heaps ... -
python range xrange
2013-06-25 23:30 1149引用Help on built-in function ran ... -
python class
2013-06-25 00:54 1829引用类是创建新对象类 ... -
AttributeError: 'module' object has no attribute 'SendCloud'
2013-06-05 11:46 7084网上查了下 意思是说你命名的文件名不能和lib重名,这样会导 ... -
python string
2013-05-07 23:44 2199如果这就是字符串,这本来就是字符串 首先看下字符串的方法 ... -
Python property
2013-03-29 19:56 0由于之前有总结过,可以参考http://2057.iteye. ... -
python tips
2013-03-28 23:57 8831、enum #!/usr/bin/env python ... -
python decorators
2013-03-28 23:36 1365Contains: 1、decorators 2、funct ... -
Python map、filter,reduce介绍
2013-03-28 22:02 13101、filter(function,iterable) 引用C ... -
Python __new__ 、__init__、 __call__
2013-03-26 23:49 5352Contains: __new__: 创建对象时调用,返回当 ... -
Python socket简介
2013-03-25 23:42 2169自豪地使用dir和help. Python 2.7.2 ( ... -
Tornado ioloop源码简析
2013-03-21 00:18 2850#!/usr/bin/env python #-*-en ... -
Tornado httpserver 源码简析
2013-03-17 01:49 1791整个流程就是创建一个socket socket.socket ...
相关推荐
- Python 2.5引入了对Closures(闭包)的支持,这是函数可以引用并返回外部作用域变量的功能。 - 新增了with语句,用于更方便地管理资源,如打开和关闭文件。 - 引入了try/except/finally的改进,允许在except块...
这包括函数装饰器(function decorators)、高阶函数(higher-order functions)、闭包(closures)等概念。 4. 面向对象的惯用法:通过学习引用、可变性、接口、运算符重载以及多重继承来构建类。这会帮助读者更好...
闭包(Closures)是函数式编程中的一个概念,指的是那些能够捕获自由变量的函数。装饰器(Decorators)则是用于修改或增强函数或方法功能的技术,它允许程序员在不改变原有函数的基础上增加额外的功能。 Python也...
在编码方面,本书可能会深入探讨Python的高级特性,包括但不限于装饰器(Decorators)、迭代器(Iterators)、生成器(Generators)、闭包(Closures)等。这些概念对于编写出高效、可读性强的Python代码至关重要。...
- 包含了对Closures(闭包)的完全支持,这是函数式编程的重要概念。 - 新增了set(集合)类型,提供了集合运算功能,如并集、交集和差集。 - 对异常处理进行了改进,支持多个except子句处理不同类型的异常。 2....
文件还提到了闭包(Closures)的概念,闭包是函数和引用的自由变量的组合。在Python中,闭包可以用于创建自定义的函数生成器,也可以用于实现装饰器。在闭包中,内部函数可以访问外部函数的参数和变量,即使外部函数...
Python 2.5.4包含了若干关键特性,例如对Closures(闭包)的支持,这是函数式编程中的一个重要概念。它还引入了with语句,这使得资源管理(如文件操作)更加简洁和安全。此外,这个版本对生成器(generator)进行了...
Function decorators and closures Part IV. Object Oriented Idioms Chapter 8. Object references, mutability and recycling Chapter 9. A Pythonic object Chapter 10. Sequence hacking, hashing and slicing...
Python高级部分课程涉及到的核心概念包括迭代器(Iterators)、生成器(Generators)、闭包(Closures)、装饰器(Decorators)、模块导入(Import)、作用域(Scope)、拷贝(Copying)、资源回收机制(Garbage ...
Python对话Closures in Python支持材料。 谈话的目的是向观众介绍一般的封闭剂。 演示还包括来自其他语言(例如Java,C#或Javascript)的示例。 滑梯 在根文件夹中检出pycon2017-closures.pdf 。 资料夹结构 python...
19. **Python的闭包(Closures)**: 闭包是指有权访问另一个函数作用域中变量的函数,尤其是那些局部变量。 20. **Python的装饰器工厂函数**: 装饰器工厂函数可以动态生成装饰器,提供更灵活的装饰器使用方式。 ...
- 嵌套函数和闭包(closures):函数可以定义在其他函数内部,形成作用域的层次。 - 面向切面编程(AOP):通过装饰器实现跨函数的行为。 4. **Python 3.9.2 新特性**: - 关键字-only 参数:在函数定义中使用星...
8. **函数式编程**:Python支持函数式编程风格,如高阶函数(如`map`, `filter`, `reduce`)、闭包(closures)、匿名函数(lambda)和函数式装饰器。这些特性使得Python可以进行函数式的编程范式。 9. **类型注解*...
Python ZTM备忘单 :laptop: :... 函数: Functions , Lambda , Comprehensions , Map,Filter,Reduce , Ternary , Any,All , Closures , Scope 高级Python: Modules , Iterators , Generators , Decorat
8. **闭包(Closures)** 当内嵌函数引用其外部函数的局部变量时,且外部函数已执行完毕,形成的函数就称为闭包。闭包保存了外部函数的局部状态。 9. **装饰器(Decorators)** 装饰器是一种特殊类型的函数,用于...
- **闭包(Closures)**:理解闭包的概念,以及如何通过内嵌函数和非局部变量实现。 - **高阶函数(Higher-Order Functions)**:包括`map()`, `filter()`, `reduce()`等,以及使用`functools`模块的`partial()`。...
很多初次接触到python的小伙伴可能并不理解闭包是什么,为什么有闭包,闭包有什么用,那么今天博主就从这三点来为大家讲解一下python的闭包 一、闭包是什么 官方定义: 在计算机科学中,闭包(英语:Closure),又称词法...
6. **函数和闭包(Functions and Closures)**:Lisp支持高阶函数,即函数可以作为参数传递,也可以作为返回值。同时,Lisp的函数可以捕获其定义时的环境,形成闭包。 7. **元编程(Metaprogramming)**:Lisp的一...
- **闭包(Closures)**:Python和JavaScript都支持闭包,可以用来创建私有变量或实现函数工厂。 - **装饰器(Decorators)**:Python的装饰器允许你修改或增强函数的行为。在JavaScript中,可以使用函数或类的`@...
搞不清楚在闭包(closures)中Python是怎样绑定变量的 看这个例子: >>> def create_multipliers(): ... return [lambda x : i * x for i in range(5)] >>> for multiplier in create_multipliers(): ... print ...