python学习之装饰器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习之装饰器相关的知识,希望对你有一定的参考价值。

装饰器前奏1

定义:本质是函数,用来装饰其它函数,就是为其他函数来添加附加功能

原则:1、不能修改被修饰函数的源代码以及调用方式

装饰器前奏2

 


import time
def timer(func):
        def warpper(*args,**kwargs):
            start_time = time.time()
            func()
            stop_time = time.time()
            print("the func run time is %s" % (stop_time-start_time))
        return warpper
@timer  #timer(test1)
def test1():
    time.sleep(3)
    print("in the test1")
test1()

实现装饰器只是储备:

1、函数即”变量“

2、高阶函数

3、嵌套函数

高阶函数+嵌套函数=》装饰器

 

 

装饰器前奏3

装饰器前奏4

 

以上是关于python学习之装饰器的主要内容,如果未能解决你的问题,请参考以下文章

python学习之-装饰器

python学习之装饰器

Python学习之三大名器-装饰器迭代器生成器

python函数学习之装饰器

python3学习之装饰器

python学习之-propetry装饰器