码迷,mamicode.com
首页 > 其他好文 > 详细

装饰器小例子

时间:2016-07-29 19:06:32      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

import time

def tm(*arg, **kwargs):
  def wrap_fun(fun):
    def wrap_arg(*arg, **kwargs):

      print time.time()

      fun(*arg, **kwargs)

      print time.time()
    return wrap_arg
  return wrap_fun

@tm()
def test(x,y):
  print "x+y=" + str(x+y)

@tm()
def test1():
  print "no args"

@tm()
def test2(str):
  print "args = " + str


test(23,34)
test1()
test2("sdfsdfsdjklfsdkf")

装饰器小例子

标签:

原文地址:http://www.cnblogs.com/JohnLiang/p/5719321.html

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