大聊Python----装饰器
什么是装饰器?
装饰器其实和函数没啥区别,都是用def去定义的,其本质就是函数,而功能就是装饰其他的函数,说白了就是为其他函数提供附加功能
装饰器有什么作用?
比如你是一个公司的员工,你所写的程序里有100个函数,但是你所写的程序都已经上线运行了,突然有一天你的产品经理来找你,让你在咱们的APP上新增一段功能!那你说该怎么做这件事情?问题是你的程序都已经在运行了 ,不能修改你程序的源代码,否则会出现意想不到的效果!所以你想新增一项功能,但是不能修改你的源代码!那该怎么办呢?
装饰器对待被修饰的函数是完全透明的状态!也就是函数感觉不到装饰器的存在,装饰器没有动函数的源代码,也不影响函数的运行。
先看一下代码:
import time def timmer(func): # 装饰器
def warpper(*args,**kwargs):
start_time = time.time() # 开始的时间
func()
stop_time = time.time() # 结束的时间
print('the fun run time is %s'%(stop_time - start_time))
return warpper @timmer # 被装饰的函数
def test1():
time.sleep(3) # 延时3秒
print("in the test1") test1()
结果展示:

实现装饰器知识储备
1、函数即“变量”
机制:

函数调用顺序:其他高级语言类似,Python 不允许在函数未声明之前,对其进行引用或者调用
错误示范:
def foo():
print 'in the foo'
bar()
foo()
报错:
in the foo
Traceback (most recent call last):
File "<pyshell#13>", line 1, in <module>
foo()
File "<pyshell#12>", line 3, in foo
bar()
NameError: global name 'bar' is not defined
def foo():
print 'foo'
bar()
foo()
def bar():
print 'bar'
报错:NameError: global name 'bar' is not defined
正确示范:(注意,python为解释执行,函数foo在调用前已经声明了bar和foo,所以bar和foo无顺序之分)
def bar():
print 'in the bar'
def foo():
print 'in the foo'
bar()
foo()
def foo():
print 'in the foo'
bar()
def bar():
print 'in the bar'
foo()
2、高阶函数
a、就是把函数名当做实参传给另外一个函数(在不修改被装饰函数源代码的情况下为其增添功能)
示例:
import time def bar():
time.sleep(3)
print("in the bar")
def test1(func):
start_time = time.time()
func()
stop_time = time.time()
print("the func run rime is %s"%(stop_time - start_time)) test1(bar)
结果:

b、返回值中包含函数名(不修改函数的调用方式)
示例:
import time def bar():
time.sleep(3)
print("in the bar")
def test2(func):
print(func)
return func bar = test2(bar)
print(bar) # run bar
效果:
<function bar at 0x00000000007C48C8>
<function bar at 0x00000000007C48C8>
3、嵌套函数
局部作用域和全局作用域的访问顺序
x=0
def grandpa():
# x=1
def dad():
x=2
def son():
x=3
print(x)
son()
dad()
grandpa()
显示效果为:
3

高阶函数 + 嵌套函数 ==》 装饰器
先看个例子
import time
def timer(func):
def deco():
start_time = time.time()
func()
stop_time = time.time()
print("the func's run time is %s "%(stop_time - start_time))
return deco @timer
def test1():
time.sleep(3)
print("the test1 is running!") @timer
def test2():
time.sleep(3)
print("the test2 is running!") test1()
test2()

结果显示:
the test1 is running!
the func's run time is 3.000171422958374
the test2 is running!
the func's run time is 3.000171661376953
若想给test2传递参数,如下例,该怎么做呢?
import time
def timer(func):
def deco():
start_time = time.time()
func()
stop_time = time.time()
print("the func's run time is %s "%(stop_time - start_time))
return deco @timer
def test1():
time.sleep(3)
print("the test1 is running!") @timer
def test2(name):
time.sleep(3)
print("the test2 is running!",name) test1()
test2("alex")
通过执行,会出现下面的错误

意思是说,deco()缺少了一个元素!
那该怎么解决这个问题呢?
咱们先来捋顺下思路!
通过@timer可知test2() =timer(test2) = deco ,test2(name) = deco(name)
所以可以看出要给deco传递实参,所以做了下面
def timer(func):
def deco(name):
start_time = time.time()
func(name)
stop_time = time.time()
print("the func's run time is %s "%(stop_time - start_time))
return deco
通过执行,会看到下面的结果!

这回好了,test2不出错了,反而test1报错了,那个该怎么办呢?
看下test1出错的原因是test1的deco缺少了一个实参,那么问题来了,test1该怎么处理呢?
其实很简单,使用*args,和**kwargs尽可以完美的解决这个问题!
现在来看看经过改正的程序
import time
def timer(func):
def deco(*args,**kwargs):
start_time = time.time()
func(*args,**kwargs)
stop_time = time.time()
print("the func's run time is %s "%(stop_time - start_time))
return deco @timer
def test1():
time.sleep(3)
print("the test1 is running!") @timer
def test2(name):
time.sleep(3)
print("the test2 is running!",name) test1()
test2("alex")
结果显示:
the test1 is running!
the func's run time is 3.000171661376953
the test2 is running! alex
the func's run time is 3.000171422958374
装饰器之高潮
进入高潮之前,我们先来点前戏
先看下面的代码
import time
user , passwd = "sutaoyu" , "sutaoyu01" def auth(func):
def wrapper(*args,**kwargs):
username = input("Username").strip()
password = input("Password").strip()
if user == username and passwd == password:
print("\033[32;1mUser has passed authentication\033[0m")
func(*args,**kwargs)
else:
exit("\033[31;1mInvalid username and password\033[0m")
return wrapper @auth
def index():
print("welcome to index Page!") @auth
def home():
print("welcome to index Home!") @auth
def bbs():
print("welcome to index BBS!") index()
home()
bbs()
其输出的结果为:
输入正确时:

输入错误时:

现在当我们把前面的代码稍微改一下,装饰器代码不动,只改变下面两个地方
def index():
print("welcome to index Page!")
return "Page" print(index())
此时看输出的结果:

会发现无结果并为None,那是因为什么呢?
因为装饰器里的wrapper没有返回值所以,我们给他提供返回值即可!
def auth(func):
def wrapper(*args,**kwargs):
username = input("Username:").strip()
password = input("Password:").strip()
if user == username and passwd == password:
print("\033[32;1mUser has passed authentication\033[0m")
return func(*args,**kwargs)
else:
exit("\033[31;1mInvalid username and password\033[0m")
return wrapper
运行下程序,看看结果

可以看出,问题已经解决!
现在高潮部分即将来临:
我能不能让我的home在认证的时候用本地的认证,但是bbs认证的时候用远程的ldap?
答案是肯定的!
先看下代码!
import time
user , passwd = "" , "" def auth(auth_type):
print("auth_typr:",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 user == username and passwd == password:
print("\033[32;1mUser has passed authentication\033[0m")
func(*args,**kwargs)
else:
exit("\033[31;1mInvalid username and password\033[0m")
elif auth_type == "ldap":
print("搞毛啊!!!!!")
return wrapper
return outer_wrapper # @auth
def index():
print("welcome to Index page!")
return "Page" @auth(auth_type = "local")
def home():
print("welcome to Home page!") @auth(auth_type = "ldap")
def bbs():
print("welcome to BBS page!") index()
home()
bbs()
运行的结果为:

可以看出,我们的认真已经成功!
大聊Python----装饰器的更多相关文章
- Python装饰器总结,带你几步跨越此坑!
欢迎添加华为云小助手微信(微信号:HWCloud002 或 HWCloud003),输入关键字"加群",加入华为云线上技术讨论群:输入关键字"最新活动",获取华 ...
- Python装饰器由浅入深
装饰器的功能在很多语言中都有,名字也不尽相同,其实它体现的是一种设计模式,强调的是开放封闭原则,更多的用于后期功能升级而不是编写新的代码.装饰器不光能装饰函数,也能装饰其他的对象,比如类,但通常,我们 ...
- Python装饰器与面向切面编程
今天来讨论一下装饰器.装饰器是一个很著名的设计模式,经常被用于有切面需求的场景,较为经典的有插入日志.性能测试.事务处理等.装饰器是解决这类问题的绝佳设计,有了装饰器,我们就可以抽离出大量函数中与函数 ...
- 一篇关于Python装饰器的博文
这是一篇关于python装饰器的博文 在学习python的过程中处处受阻,之前的学习中Python的装饰器学习了好几遍也没能真正的弄懂.这一次抓住视频猛啃了一波,就连python大佬讲解装饰器起来也需 ...
- python 装饰器 一篇就能讲清楚
装饰器一直是我们学习python难以理解并且纠结的问题,想要弄明白装饰器,必须理解一下函数式编程概念,并且对python中函数调用语法中的特性有所了解,使用装饰器非常简单,但是写装饰器却很复杂.为了讲 ...
- Python装饰器模式学习总结
装饰器模式,重点在于装饰.装饰的核心仍旧是被装饰对象. 类比于Java编程的时候的包装模式,是同样的道理.虽然概念上稍有不同但是原理上还是比较相近的.下面我就来谈一谈我对Python的装饰器的学习的一 ...
- 转发对python装饰器的理解
[Python] 对 Python 装饰器的理解的一些心得分享出来给大家参考 原文 http://blog.csdn.net/sxw3718401/article/details/3951958 ...
- 利用世界杯,读懂 Python 装饰器
Python 装饰器是在面试过程高频被问到的问题,装饰器也是一个非常好用的特性, 熟练掌握装饰器会让你的编程思路更加宽广,程序也更加 pythonic. 今天就结合最近的世界杯带大家理解下装饰器. 德 ...
- 理解 Python 装饰器看这一篇就够了
讲 Python 装饰器前,我想先举个例子,虽有点污,但跟装饰器这个话题很贴切. 每个人都有的内裤主要功能是用来遮羞,但是到了冬天它没法为我们防风御寒,咋办?我们想到的一个办法就是把内裤改造一下,让它 ...
- Python高级特性: 12步轻松搞定Python装饰器
12步轻松搞定Python装饰器 通过 Python 装饰器实现DRY(不重复代码)原则: http://python.jobbole.com/84151/ 基本上一开始很难搞定python的装 ...
随机推荐
- JSON和Django内置序列化
JSON 什么是JSON JSON 指的是 JavaScript 对象表示法(JavaScript Object Notation) JSON 是轻量级的文本数据交换格式 JSON 独立于语言 * J ...
- 在Eclipse中开发WEB项目
本文的演示是从本地文件创建dynamic web project,从svn检出的同时创建dynamic web project于此类似.我们推荐使用解压版的tomcat6.x版本,来作为服务器.可以到 ...
- 第98天:CSS3中transform变换详解
transform变换详解 本文主要介绍变形transform. Transform字面上就是变形,改变的意思.在CSS3中transform主要包括以下几种:旋转rotate.扭曲skew.缩放sc ...
- BZOJ 1188 分裂游戏(sg函数)
如果把每堆巧克力看做一个子游戏,那么子游戏会互相影响. 如果把全部堆看做一个子游戏,那么状态又太多. 如果把每一个单独的巧克力看成一个子游戏的话,那么状态很少又不会互相影响. 令sg[i]表示一个巧克 ...
- 【bzoj3730】震波 动态点分治+线段树
题目描述 在一片土地上有N个城市,通过N-1条无向边互相连接,形成一棵树的结构,相邻两个城市的距离为1,其中第i个城市的价值为value[i].不幸的是,这片土地常常发生地震,并且随着时代的发展,城市 ...
- linux内核分析 第一周 计算机是如何工作的 20125221银雪纯
我使用的c语言代码是: int g(int x) { return x + 1; } int f(int x) { return g(x); } int main(void) { return f(6 ...
- Codeforces 906B. Seating of Students(构造+DFS)
行和列>4的可以直接构造,只要交叉着放就好了,比如1 3 5 2 4和2 4 1 3 5,每一行和下一行用不同的方法就能保证没有邻居. 其他的可以用爆搜,每次暴力和后面的一个编号交换并判断可行性 ...
- 【bzoj4872】【shoi2017】分手即是祝愿
4872: [Shoi2017]分手是祝愿 Time Limit: 20 Sec Memory Limit: 512 MBSubmit: 746 Solved: 513[Submit][Statu ...
- 【loj6179】Pyh的求和
Portal -->loj6179 Solution 这题其实有一个式子一喵一样的版本在bzoj,但是那题是\(m\)特别大然后只有一组数据 这题多组数据== 首先根据\(\v ...
- Spring MVC POJO入参过程分析
SpringMVC确定目标方法POJO类型的入参过程 1.确认一个key: (1).若目标方法的POJO类型的参数没有使用@ModelAttribute作为修饰,则key为POJO类名第一个字母的小写 ...