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

Python 装饰器

时间:2016-04-08 14:48:31      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

import  time

def hh(func):
def wrapper(*args, **kwargs):
start=time.clock()
func(*args, **kwargs)
end=time.clock()
print ‘time:%f‘%(end - start)
return wrapper
def out_log(func):
def wrapper(*args, **kwargs):
print ‘stsart %s‘%func
func(*args, **kwargs)
print ‘end %s‘%func
return wrapper
def a(a,b):
print a + b
def times(a,b):
print a * b
@hh
@out_log
def say(a):
print ‘hello‘

#say=hh(say)
#say=out_log(say(‘a‘))
say(‘test‘)
#say()
#say()

Python 装饰器

标签:

原文地址:http://www.cnblogs.com/yjz1/p/5367873.html

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