`

python closures

阅读更多
Closure:如果在一个内部函数里,对在外部作用域(但不是在全局作用域)的变量进行引用,那么内部函数就被认为是闭包(closure)。它只不过是个"内层"的函数,由一个名字(变量)来指代,而这个名字(变量)对于“外层”包含它的函数而言,是本地变量。
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/
分享到:
评论

相关推荐

    python官方2.5.amd64版本msi安装包

    - Python 2.5引入了对Closures(闭包)的支持,这是函数可以引用并返回外部作用域变量的功能。 - 新增了with语句,用于更方便地管理资源,如打开和关闭文件。 - 引入了try/except/finally的改进,允许在except块...

    FluentPython英文正式版(非提前版)

    这包括函数装饰器(function decorators)、高阶函数(higher-order functions)、闭包(closures)等概念。 4. 面向对象的惯用法:通过学习引用、可变性、接口、运算符重载以及多重继承来构建类。这会帮助读者更好...

    python知识.pdf

    闭包(Closures)是函数式编程中的一个概念,指的是那些能够捕获自由变量的函数。装饰器(Decorators)则是用于修改或增强函数或方法功能的技术,它允许程序员在不改变原有函数的基础上增加额外的功能。 Python也...

    Expert Python Programming

    在编码方面,本书可能会深入探讨Python的高级特性,包括但不限于装饰器(Decorators)、迭代器(Iterators)、生成器(Generators)、闭包(Closures)等。这些概念对于编写出高效、可读性强的Python代码至关重要。...

    python-2.5.2.msi

    - 包含了对Closures(闭包)的完全支持,这是函数式编程的重要概念。 - 新增了set(集合)类型,提供了集合运算功能,如并集、交集和差集。 - 对异常处理进行了改进,支持多个except子句处理不同类型的异常。 2....

    各类速查表汇总-Python Decorators

    文件还提到了闭包(Closures)的概念,闭包是函数和引用的自由变量的组合。在Python中,闭包可以用于创建自定义的函数生成器,也可以用于实现装饰器。在闭包中,内部函数可以访问外部函数的参数和变量,即使外部函数...

    python2版本里面的5 4版本

    Python 2.5.4包含了若干关键特性,例如对Closures(闭包)的支持,这是函数式编程中的一个重要概念。它还引入了with语句,这使得资源管理(如文件操作)更加简洁和安全。此外,这个版本对生成器(generator)进行了...

    Fluent.Python.1491946008

    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高级部分课件

    Python高级部分课程涉及到的核心概念包括迭代器(Iterators)、生成器(Generators)、闭包(Closures)、装饰器(Decorators)、模块导入(Import)、作用域(Scope)、拷贝(Copying)、资源回收机制(Garbage ...

    2017java源码-pycon2017-closures:PyconSK2017中的Python,Java,C#,JavaScript的幻灯

    Python对话Closures in Python支持材料。 谈话的目的是向观众介绍一般的封闭剂。 演示还包括来自其他语言(例如Java,C#或Javascript)的示例。 滑梯 在根文件夹中检出pycon2017-closures.pdf 。 资料夹结构 python...

    最常见的35个Python面试题及答案 (3).pdf

    19. **Python的闭包(Closures)**: 闭包是指有权访问另一个函数作用域中变量的函数,尤其是那些局部变量。 20. **Python的装饰器工厂函数**: 装饰器工厂函数可以动态生成装饰器,提供更灵活的装饰器使用方式。 ...

    python-3.9.2-docs_pythonepub_

    - 嵌套函数和闭包(closures):函数可以定义在其他函数内部,形成作用域的层次。 - 面向切面编程(AOP):通过装饰器实现跨函数的行为。 4. **Python 3.9.2 新特性**: - 关键字-only 参数:在函数定义中使用星...

    python-adv:深入了解python

    8. **函数式编程**:Python支持函数式编程风格,如高阶函数(如`map`, `filter`, `reduce`)、闭包(closures)、匿名函数(lambda)和函数式装饰器。这些特性使得Python可以进行函数式的编程范式。 9. **类型注解*...

    ztm-python-cheat-sheet

    Python ZTM备忘单 :laptop: :... 函数: Functions , Lambda , Comprehensions , Map,Filter,Reduce , Ternary , Any,All , Closures , Scope 高级Python: Modules , Iterators , Generators , Decorat

    py代码-Python Core 02_Functions

    8. **闭包(Closures)** 当内嵌函数引用其外部函数的局部变量时,且外部函数已执行完毕,形成的函数就称为闭包。闭包保存了外部函数的局部状态。 9. **装饰器(Decorators)** 装饰器是一种特殊类型的函数,用于...

    Intermediate-Python-Cheat-Sheet.zip

    - **闭包(Closures)**:理解闭包的概念,以及如何通过内嵌函数和非局部变量实现。 - **高阶函数(Higher-Order Functions)**:包括`map()`, `filter()`, `reduce()`等,以及使用`functools`模块的`partial()`。...

    Python学习之路——函数的闭包与装饰器

    很多初次接触到python的小伙伴可能并不理解闭包是什么,为什么有闭包,闭包有什么用,那么今天博主就从这三点来为大家讲解一下python的闭包 一、闭包是什么 官方定义: 在计算机科学中,闭包(英语:Closure),又称词法...

    lis.zip_Python__Python_

    6. **函数和闭包(Functions and Closures)**:Lisp支持高阶函数,即函数可以作为参数传递,也可以作为返回值。同时,Lisp的函数可以捕获其定义时的环境,形成闭包。 7. **元编程(Metaprogramming)**:Lisp的一...

    Python-For-JS:一些适用于Javascript的Python函数

    - **闭包(Closures)**:Python和JavaScript都支持闭包,可以用来创建私有变量或实现函数工厂。 - **装饰器(Decorators)**:Python的装饰器允许你修改或增强函数的行为。在JavaScript中,可以使用函数或类的`@...

    Python新手如何进行闭包时绑定变量操作

    搞不清楚在闭包(closures)中Python是怎样绑定变量的 看这个例子: >>> def create_multipliers(): ... return [lambda x : i * x for i in range(5)] >>> for multiplier in create_multipliers(): ... print ...

Global site tag (gtag.js) - Google Analytics