#-*-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)