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

函数进阶之闭包函数和装饰器

时间:2019-09-12 21:47:00      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:函数   turn   func   通过   index   python   class   def   out   

闭包函数

把函数A和变量x包在函数B内部,然后通过函数B的返回值返回除函数A对象

def B(x):
    # x = 1
    def A():
        print(x)
        pass
    return A    

装饰器

用来给函数加功能,他的本质也是函数

1.不改变被装饰函数的源代码

2.不改变被装饰函数的调用方式


def outter(func):
    def wrapper(*args,**kwargs):
        #逻辑
        res = func(*args,**kwargs)    # func是被装饰的函数
        return res
    return wrapper

@outter
def index():
    pass
def sanceng(engine):
    def outter(func):
        def warpper(*args,**kwargs):
            # 逻辑
            res = func(*args,**kwargs)   # func是被装饰的函数

            return res
        return warpper
    return outter

@sanceng
def index():
    pass

函数进阶之闭包函数和装饰器

标签:函数   turn   func   通过   index   python   class   def   out   

原文地址:https://www.cnblogs.com/shiqizz/p/11515024.html

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