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

python 装饰器学习

时间:2017-02-14 12:07:34      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:...   执行   http   print   int   调用   rhca   hive   替换   

转自:http://www.cnblogs.com/rhcad/archive/2011/12/21/2295507.html

第一步: 最简单的函数,准备附加额外功能

示例1:最简单的函数,表示调用了两次
>>> def myfunc(): ... print("myfunc() called.") ... >>> myfunc() myfunc() called. >>> myfunc() myfunc() called.

第二步:使用装饰函数在函数执行前和执行后分别附加额外功能

示例2:替换函数(装饰)
装饰函数的参数是被装饰的函数对象,返回原函数对象
装饰的实质语句: myfunc = deco(myfunc)‘‘‘

>>> def deco(func): ... print("before myfunc() called.") ... func() ... print(" after myfunc() called.") ... return func ... >>> def myfunc(): ... print(" myfunc() called.") ... >>> myfunc = deco(myfunc) before myfunc() called. myfunc() called. after myfunc() called. >>> myfunc() myfunc() called. >>> myfunc()

 

python 装饰器学习

标签:...   执行   http   print   int   调用   rhca   hive   替换   

原文地址:http://www.cnblogs.com/wangtao1993/p/6396652.html

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