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

python装饰器

时间:2018-12-20 20:23:59      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:from   运行时   class   int   闭包   port   小明   star   装饰器   

装饰器

装饰器= 高阶函数+函数嵌套+闭包

高阶函数

import time

def foo():
      time.sleep(3)
      print(from to foo)

def timer(func):
      start_time=time.time()
      func()
      stop_time=time.time()
      print(函数运行时间是 %s  %(stop_time- start_time))
      return func
foo=timer(foo)
foo()

 函数嵌套

def  foo(name):
        print(传入参数 %s %name)
        def    nam():
                print(传入参数 %s %name)
                def    na()
                        name = alxe
                        print(传入参数 %s %name)
                na()
        nam()
foo(小明)

 闭包就是函数作用域的体现

python装饰器

标签:from   运行时   class   int   闭包   port   小明   star   装饰器   

原文地址:https://www.cnblogs.com/wlei5206/p/10151628.html

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