python装饰器介绍

时间:2021-07-07 18:04:53
"""
装饰器
定义:本质是函数(器:就是函数的意思),功能:装饰其他函数,就是为其他函数添加附加功能 原则:
1. 不能修改被装饰的函数的源代码
2. 不能修改被装饰的函数的调用方式 实现装饰器知识储备:
1. 函数即"变量"
2. 高阶函数
a: 把一个函数名当做实参传给另一个函数(在不修改被装饰函数源代码的情况下为其添加功能)
b: 返回值中包含函数名 (不修改函数的调用方式)
3. 嵌套函数 高阶函数 + 嵌套函数 --> 装饰器 参考链接:http://egon09.blog.51cto.com/9161406/1836763
""" # 将test1 和 test2 函数添加logging 功能 (未使用使用函数调用)
'''
def logger():
print ("logging") def test1():
pass
logger() def test2():
pass
logger() test1()
test2()
'''

# 装饰器示范_1
'''
import time def timmer(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 @timmer
def test1():
time.sleep(3)
print ("this is test1") test1()
# this is test1
# the func run time is 3.019197702407837 '''

# 函数即"变量"
# 新概念:函数在内存中以变量形式存放
# 匿名函数没有函数名,当运行后内存会被立马回收(def 定义的函数,不会被内存回收,当程序结束后内存地址才会释放)
'''
# eg_v1
def bar(): # 正常运行
print ("in the bar")
def foo():
print ("in the foo")
bar()
foo()
# in the foo
# in the bar # eg_v2 # 正常运行
def foo():
print ("in the foo")
bar()
def bar():
print ("in the bar")
foo()
# in the foo
# in the bar # eg_v3 # 抛出异常
def foo():
print ("in the foo")
bar()
foo()
def bar():
print ("in the bar")
# Traceback (most recent call last):
# in the foo
# File "E:/pycharm-project/PYTHON自动化课程/第二模块/课堂笔记/装饰器_v1.py", line 92, in <module>
# foo()
# File "E:/pycharm-project/PYTHON自动化课程/第二模块/课堂笔记/装饰器_v1.py", line 91, in foo
# bar()
# NameError: name 'bar' is not defined
'''

# 高阶函数
# eg_v1
'''
def bar():
print ("in the bar") def test1(func):
print (func)
# test1(bar)
# # <function bar at 0x0000024DE92E3E18> bar函数的内存地址
''' # eg_v2
'''
def bar():
print ("in the bar") def test1(func):
print (func)
func() # 2 调用func函数时,也运行了bar函数
test1(bar) # 1 将bar函数传递给test1
# <function bar at 0x00000216F49D3E18>
# in the bar
''' # eg_v3 # 装饰器第一步(没有修改源代码,但改变了调用方式)(test1为装饰函数,bar函数为被装饰函数)
'''
import time
def bar():
time.sleep(2)
print ("in the bar") def test1(func):
start_time = time.time()
func()
stop_time = time.time()
print ("the func run time is %s"%(stop_time - start_time)) test1(bar)
# in the bar
# the func run time is 2.000016689300537
''' # eg_v4 '''
import time
def bar():
time.sleep(2)
print("in the bar") def test2(func):
print (func)
return func
# t = test2(bar) # 将test2(bar) 赋值给t,t() == 调用test2函数,改变了调用方式
# t()
# # <function bar at 0x00000172B2CF3E18>
# # in the bar
bar = test2(bar) # # 将test2(bar) 赋值给bar,bar() == 调用test2函数,未改变了调用方式
bar()
# <function bar at 0x0000016C6E663E18>
# in the bar
'''

  


# 嵌套函数
# eg_v1
'''
def foo():
print ("in the foo")
def bar():
print ("in the bar") bar()
foo()
''' # eg_v2 # 局部作用域和全局作用域的访问顺序
'''
x = 0
def grandpa():
x = 1
def dad():
x = 2
def son():
x = 3
print (x)
son()
dad()
grandpa()
# 3
'''

  


# 写一个简单的装饰器
# eg_v1 不使用语法糖
'''
import time def timer(func): # timer(test1) --> func= test1
def deco():
start_time = time.time()
func() # run test1()
stop_time = time.time()
print ("the func run time %s:"%(stop_time - start_time))
return deco def test1():
time.sleep(3)
print ("in the test1") def test2():
time.sleep(3)
print ("in the test2")
test1 = (timer(test1)) # 赋值必须与被装饰的函数同名
test1()
# in the test1
# the func run time 3.0068588256835938:
'''

# eg_v2 使用语法糖,不带参数
'''
import time def timer(func): # timer(test1) --> func= test1
def deco():
start_time = time.time()
func() # run test1()
stop_time = time.time()
print ("the func run time %s:"%(stop_time - start_time))
return deco @timer
def test1():
time.sleep(3)
print ("in the test1")
@timer
def test2():
time.sleep(3)
print ("in the test2") test1()
test2()
# in the test1
# the func run time 3.000098705291748:
# in the test2
# the func run time 3.0001633167266846:
'''

# eg_v2 使用语法糖,被装饰函数带参数
'''
import time def timer(func): # timer(test1) --> func= test1
def deco(*args,**kwargs):
start_time = time.time()
func(*args,**kwargs) # run test1()
stop_time = time.time()
print ("the func run time %s:"%(stop_time - start_time))
return deco @timer
def test1():
time.sleep(3)
print ("in the test1")
@timer
def test2(name): # test2 = timer(test2) == deco test2(name) == deco(name)
time.sleep(3)
print ("in the test2",name) test1()
test2("xieshengsen")
# in the test1
# the func run time 3.0004942417144775:
# in the test2 xieshengsen
# the func run time 3.0003535747528076:
'''

# eg_v3
# 一个简单的登陆页面认证过程(装饰器)(装饰函数带参数)
user = "aaaaaa"
pawd = "123456" def auth(auth_type):
print ("auth func:",auth_type) def outer_wrapper(func):
def wrapper(*args,**kwargs):
print ("wrapper func args:",*args,**kwargs) if auth_type == "local":
username = input("username:").strip()
password = input("password:").strip() if username == user and password == pawd:
print ("login....")
res = func(*args,**kwargs) # from home
print ("-*-*-*-*-after auth-*-*-*-*-")
return res
else:
print ("invalid...")
elif auth_type == "ldap":
input("ldap")
print ("use ladp auth...")
return wrapper
return outer_wrapper def index():
print ("welcome to index page.") @auth(auth_type="local")
def home():
print("welcome to home age.") @auth(auth_type="ldap")
def bbs():
print("welcome to bbs age.") index()
home()
bbs()

  

另 一些关于装饰器介绍的实例

来自:http://blog.csdn.net/yhy1271927580/article/details/72758577

"""
被装饰的对象为函数,且不带参数
简要说明: @timeit装饰器对sleep函数进行了装饰,这是一个装饰器不带参数的装饰器,当sleep函数调用的时候,调用的并不是我们看到的原始的sleep函数,而是装饰过后的sleep函数。这个装饰的过程会发生在调用sleep函数之前发生。
装饰的过程:原生的sleep函数作为参数传递到timeit装饰器函数的fn参数,通过@wraps这个装饰器将fn的属性赋值给底下需要返回的wrap函数,最后返回wrap函数,由此可间,wrap就是装饰过后的sleep函数了。那么在调用新sleep函数的时候,就是调用wrap函数,sleep函数的参数2,被wrap函数的*args、**kwargs这两个可变参数接收。
整个装饰的目的就是将原生的sleep函数,扩充了一个print(nowTime() - start)的过程。
"""
from time import sleep as sleeping
from time import time as nowtime
from functools import wraps def timeit(fn):
@wraps(fn)
def wrap(*args,**kwargs):
start = nowtime()
ret = fn(*args,**kwargs)
print (nowtime() - start)
return ret
return wrap @timeit
def sleep(n):
sleeping(n)
print("sleep time {}s".format(n))
return n sleep(2)
print("%s func" % sleep.__name__)
# sleep time 2s
# 2.0028135776519775
# sleep func

  

"""
被装饰的对象为函数,且带参数
简要说明: @timeit装饰器对sleep函数进行了装饰,这是一个装饰器是带参数的装饰器.
这个装饰器由于需要传递参数,因此需要两层装饰,第一层是接受传递的参宿,第二层是接收传递进来的需要装饰的函数当sleep函数调用的时候,调用的并不是我们看到的原始的sleep函数,而是装饰过后的sleep函数。
装饰的过程:装饰器第一次接收cpu_time参数,然后返回一个dec装饰器,而这个dec装饰器会被再次调用,传入参数是原生的sleep函数,原生的sleep函数作为参数传递到dec装饰器函数的fn参数,通过@wraps这个装饰器将fn的属性赋值给底下需要返回的wrap函数,最后返回wrap函数
在调用新sleep函数的时候,就是调用wrap函数,sleep函数的参数2,被wrap函数的*args、**kwargs这两个可变参数接收。整个装饰的目的就是将原生的sleep函数,扩充了一个time_func = time.clock if cpu_time else time.time和print(nowTime() - start)的过程
"""
from functools import wraps
import time def timeit(cpu_time=False):
print("timeit") def dec(fn):
@wraps(fn)
def wrap(*args,**kwargs):
start = time.time()
ret = fn (*args,**kwargs)
print(time.time() - start)
return ret
return wrap
return dec @timeit(False)
def sleep(n):
time.sleep(n)
print ("time sleep")
return n sleep(2)
print("%s func" % sleep.__name__)
# timeit
# time sleep
# 2.009625196456909
# sleep func

  


														
		

python装饰器介绍的更多相关文章

  1. Python 装饰器(无参,有参、多重))

    Python装饰器介绍 在Python中,装饰器(decorator)是在闭包的基础上发展起来的. 装饰器的实质是一个高阶函数,其参数是要装饰的函数名,其返回值是完成装饰的函数名,其作用是为已经存在的 ...

  2. 关于python装饰器

    关于python装饰器,不是系统的介绍,只是说一下某些问题 1 首先了解变量作用于非常重要 2 其次要了解闭包 def logger(func): def inner(*args, **kwargs) ...

  3. Python 装饰器学习

    Python装饰器学习(九步入门)   这是在Python学习小组上介绍的内容,现学现卖.多练习是好的学习方式. 第一步:最简单的函数,准备附加额外功能 1 2 3 4 5 6 7 8 # -*- c ...

  4. Python装饰器详解

    python中的装饰器是一个用得非常多的东西,我们可以把一些特定的方法.通用的方法写成一个个装饰器,这就为调用这些方法提供一个非常大的便利,如此提高我们代码的可读性以及简洁性,以及可扩展性. 在学习p ...

  5. Python装饰器由浅入深

    装饰器的功能在很多语言中都有,名字也不尽相同,其实它体现的是一种设计模式,强调的是开放封闭原则,更多的用于后期功能升级而不是编写新的代码.装饰器不光能装饰函数,也能装饰其他的对象,比如类,但通常,我们 ...

  6. Python装饰器与面向切面编程

    今天来讨论一下装饰器.装饰器是一个很著名的设计模式,经常被用于有切面需求的场景,较为经典的有插入日志.性能测试.事务处理等.装饰器是解决这类问题的绝佳设计,有了装饰器,我们就可以抽离出大量函数中与函数 ...

  7. python装饰器方法

    前几天向几位新同事介绍项目,被问起了@login_required的实现,我说这是django框架提供的装饰器方法,验证用户是否登录,只要这样用就行了,因为自己不熟,并没有做过多解释. 今天查看dja ...

  8. &lpar;转载&rpar;Python装饰器学习

    转载出处:http://www.cnblogs.com/rhcad/archive/2011/12/21/2295507.html 这是在Python学习小组上介绍的内容,现学现卖.多练习是好的学习方 ...

  9. Python装饰器学习

    Python装饰器学习(九步入门)   这是在Python学习小组上介绍的内容,现学现卖.多练习是好的学习方式. 第一步:最简单的函数,准备附加额外功能 ? 1 2 3 4 5 6 7 8 # -*- ...

随机推荐

  1. 熊乐:H3 BPM为加速企业流程管理提供源动力

    近日,在北京·金隅喜来登酒店,H3 BPM以"让天下没有难用的流程"为主题,正式发布H3 BPM10.0版本.全新的业务流程管理系统在易用性方面大大提升,并且全面支持Java与.N ...

  2. Mozilla Firefox 24&period;0 Beta 5 发布

    Mozilla今天将Firefox 24.0 Beta 5版本放到了FTP的release目录,新版开始全面支持OS X 10.7全新的滚动条样式,禁止网站插件运行的功能出现在任务栏左侧,调整了界面U ...

  3. redis 常用操作命令

    操作相关的命令连接 quit:关闭连接(connection)auth:简单密码认证 持久化 save:将数据同步保存到磁盘bgsave:将数据异步保存到磁盘lastsave:返回上次成功将数据保存到 ...

  4. angularJs 使用中遇到的问题小结【二:购物车引起的问题思考】

    问题描述 :购物车引起的问题思考 业务逻辑是这样的:我商品加入购物车后,——>点击购物车图标——>进入订单列表(这里的数据只有首次会加载服务器数据,后面就不会执行控制器的方法了,这里的跳转 ...

  5. angular2 学习笔记 &lpar;Typescript - Attribute &amp&semi; reflection&rpar;

    refer : https://www.npmjs.com/package/reflect-metadata refer : https://www.typescriptlang.org/docs/h ...

  6. stat 函数讲解

    表头文件:    #include <sys/stat.h>                     #include <unistd.h>定义函数:    int stat( ...

  7. HTML与XHTML差额

    实际上.XHTML 与 HTML 4.01 标准没有太多的不同. 它们最基本的不同.举例说明例如以下: 1.XHTML 元素必须被正确地嵌套. 错误:<p><span>this ...

  8. 安卓IPC机制之Binder详解

    IPC(Inter-Process Communication,跨进程通信)是指两个进程之间数据交换的过程,因此我们首先必须了解什么是进程,什么是线程. 进程:进程是正在运行的程序的实例,与程序相比, ...

  9. git 创建删除分支

    进入仓库目录 -- 查看本地分支 git branch -- 查看远程分支 git branch -r -- 查看远程和本地的分支 git branch -a -- 下载远程分支代码,并切换到分支 进 ...

  10. c&num;之如何正确地实现IDisposable接口

    见实例: public class TestClass : IDisposable { //供程序员显式调用的Dispose方法 public void Dispose() { //调用带参数的Dis ...