码迷,mamicode.com
首页 > 编程语言 > 详细

python中的装饰函数

时间:2015-07-06 11:36:42      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

 

在面向对象(OOP)的设计模式中,decorator被称为装饰模式。OOP的装饰模式需要通过继承和组合来实现,而Python除了能支持OOP的decorator外,直接从语法层次支持decorator。Python的decorator可以用函数实现,也可以用类实现。

decorator可以增强函数的功能,定义起来虽然有点复杂,但使用起来非常灵活和方便。

请编写一个decorator,能在函数调用的前后打印出‘begin call‘‘end call‘的日志。

再思考一下能否写出一个@log的decorator,使它既支持:

@log
def f():
    pass

又支持:

@log(‘execute‘)
def f():
    pass

 

 1 #heelo.py
 2 __author__ = Administrator
 3 import functools
 4 def log(text=None):
 5     def de(func):
 6         @functools.wraps(func)
 7         def first(*args,**kw):
 8             if text :
 9                 print "begin call",func.__name__,input is ,text
10             else:
11                 print "begin call",func.__name__
12             rs= func(*args,**kw)
13             print end call
14             return rs
15         return first
16 
17     return de
18 
19 @log()
20 def now():
21     print I\‘m a boy 
22 
23 
24 now()
25 print now.__name__

  

python中的装饰函数

标签:

原文地址:http://www.cnblogs.com/liunnis/p/4623614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!