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

装饰器

时间:2019-12-12 19:48:54      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:int   return   star   import   imp   code   fun   函数   style   

装饰器:

import time

def timer(f):
    def inner(a):
        start_time = time.time()
        res = f(1) # 被装饰的函数
        end_time = time.time()
        print(end_time - start_time)
        return res
    return inner

@timer
def func(a): # 传参
    time.sleep(0.1)
    print("11111111",a)
    return 123456

res = func(1) # inner
print(res)

技术图片

装饰器

标签:int   return   star   import   imp   code   fun   函数   style   

原文地址:https://www.cnblogs.com/jayson-0425/p/12031112.html

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