Python 装饰器原理、定义与用法详解


Posted in Python onDecember 07, 2019

本文实例讲述了Python 装饰器原理、定义与用法。分享给大家供大家参考,具体如下:

Python 装饰器

一、何为装饰器

1、在函数中定义函数

在函数中定义另外的函数,就是说可以创建嵌套的函数,例子如下

def sayHi(name="hjj2"):
 print 'inside sayHi() func'
 def greet():
  return 'inside greet() func'
 print(greet())
sayHi()
#output
#  inside sayHi() func
#  inside greet() func

2、将函数作为参数传给另外一个函数,装饰器原型

def sayHi():
 return 'hi hjj2'
def doSthBeforeSayHi(func):
 print 'before sayHi func'
 print(func())
doSthBeforeSayHi(sayHi)
#output
#  before sayHi func
#  hi hjj2

3、实现一个装饰器

在第二步中,我们已经基本探究到装饰器的原理了,python装饰器做的事就是通过封装一个函数并且用这样或那样的方式来修改它的行为。不带@的初步示例如下:

def new_decorator(func):
  def wrapDecorator():
   print 'before func'
   func()
   print 'after func'
  return wrapDecorator
def func_require_decorator():
  print 'a func need decorator'
func_require_decorator()
#ouput: a func need decorator
func_require_decorator = new_decorator(func_require_decorator)
func_require_decorator()
#ouput:
#  before func
#  a func need decorator
#  after func

使用@来运行装饰器

@new_decorator
func_require_decorator()
#ouput:
#  before func
#  a func need decorator
#  after func

这里我们可以看到,这两个例子的运行结果是一样的。所以我们能想象得到@new_decorator的作用就是

func_require_decorator = new_decorator(func_require_decorator)

我们继续优化这个装饰器,现在我们有一个问题就是,如果我们想要通过print(func_require_decorator.__name__)就会报错# Output: wrapTheFunction。这样就需要借助python提供的functools.wraps来解决了

@wraps接受一个函数来进行装饰,并加入了复制函数名称、注释文档、参数列表等等的功能。这可以让我们在装饰器里面访问在装饰之前的函数的属性。

from functools import wraps
def new_decorator(func):
  @wraps(func)
  def wrapDecorator():
   print 'before func'
   func()
   print 'after func'
  return wrapDecorator
def func_require_decorator():
  print 'a func need decorator'
@new_decorator
func_require_decorator()
print(func_require_decorator.__name__)
#ouput: func_require_decorator

二、使用场景

1、授权,大体例子

from functools import wraps
def requires_auth(f):
  @wraps(f)
  def decorated(*args, **kwargs):
    auth = request.authorization
    if not auth or not check_auth(auth.username, auth.password):
      authenticate()
    return f(*args, **kwargs)
  return decorated

2、日志:

from functools import wraps
def logit(logfile='out.log'):
  def logging_decorator(func):
    @wraps(func)
    def wrapped_function(*args,**kwargs):
      log_string = func.__name__+"was called"
      print(log_string)
      with open(logfile,'a') as opened_file:
        opened_file.write(log_string+'\n')
      return func(*args,**kwargs)
    return wrapped_function
  return logging_decorator
@logit()
def func1():
  pass
func1()

3、其他如flask中的@app.route()

三、装饰器类

1、将上面的日志装饰器变为类的初步模型如下

from functools import wraps
class logit(object):
  def __init__(self, logfile='out.log'):
    self.logfile = logfile
  def __call__(self, func):
    @wraps(func)
    def wrapped_function(*args, **kwargs):
      log_string = func.__name__ + "was called"
      print(log_string)
      # 打开logfile并写入
      with open(self.logfile, 'a') as open_file:
        # 将日志写到指定文件
        open_file.write(log_string + '\n')
      # 发送一个通知
      self.notify()
      return func(*args, **kwargs)
    return wrapped_function
  def notify(self):
    pass
@logit()
def myfunc1():
  pass
class email_logit(logit):
  '''
  实现在函数调用时发送email
  '''
  def __init__(self, email='admin@xxx.com', *args, **kwargs):
    self.email = email
    super(email_logit, self).__init__(*args, **kwargs)
  def notify(self):
    '''
    发送邮件通知
    '''
    pass

通过这种方式,我们可以定义我们在自己的需求,减少代码的冗余,提高复用率。

至此,关于装饰器的探索就结束啦。

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
python数据结构之二叉树的建立实例
Apr 29 Python
Python简单日志处理类分享
Feb 14 Python
python使用自定义user-agent抓取网页的方法
Apr 15 Python
Python的Django中django-userena组件的简单使用教程
May 30 Python
python获得一个月有多少天的方法
Jun 04 Python
python妹子图简单爬虫实例
Jul 07 Python
python+Django+apache的配置方法详解
Jun 01 Python
Odoo中如何生成唯一不重复的序列号详解
Feb 10 Python
详解tensorflow载入数据的三种方式
Apr 24 Python
TensorFlow实现卷积神经网络
May 24 Python
Python使用tkinter模块实现推箱子游戏
Oct 08 Python
python闭包、深浅拷贝、垃圾回收、with语句知识点汇总
Mar 11 Python
Python Pandas 转换unix时间戳方式
Dec 07 #Python
Pandas-Cookbook 时间戳处理方式
Dec 07 #Python
Python数据可视化:饼状图的实例讲解
Dec 07 #Python
Python数据可视化:幂律分布实例详解
Dec 07 #Python
Python数据可视化:泊松分布详解
Dec 07 #Python
python-numpy-指数分布实例详解
Dec 07 #Python
Python Sympy计算梯度、散度和旋度的实例
Dec 06 #Python
You might like
PHP Squid中可缓存的动态网页设计
2008/09/17 PHP
php 设计模式之 工厂模式
2008/12/19 PHP
php微信高级接口群发 多客服
2016/06/23 PHP
Laravel5.1自定义500错误页面示例
2016/10/09 PHP
thinkphp5 URL和路由的功能详解与实例
2017/12/26 PHP
php依赖注入知识点详解
2019/09/23 PHP
裁剪字符串trim()自定义改进版
2013/04/10 Javascript
eclipse导入jquery包后报错的解决方法
2014/02/17 Javascript
常见的原始JS选择器使用方法总结
2014/04/09 Javascript
jquery插件jquery.dragscale.js实现拖拽改变元素大小的方法(附demo源码下载)
2016/02/25 Javascript
Node.js操作Firebird数据库教程
2016/03/04 Javascript
Angular2内置指令NgFor和NgIf详解
2016/08/03 Javascript
js自调用匿名函数的三种写法(推荐)
2016/08/19 Javascript
解析NodeJS异步I/O的实现
2017/04/13 NodeJs
AngularJS 前台分页实现的示例代码
2018/06/07 Javascript
Python实现string字符串连接的方法总结【8种方式】
2018/07/06 Python
Python Flask前后端Ajax交互的方法示例
2018/07/31 Python
Python进程间通信Queue消息队列用法分析
2019/05/22 Python
python3.6环境安装+pip环境配置教程图文详解
2019/06/20 Python
python分数表示方式和写法
2019/06/26 Python
pandas 中对特征进行硬编码和onehot编码的实现
2019/12/20 Python
解决tensorflow训练时内存持续增加并占满的问题
2020/01/19 Python
Python单元测试模块doctest的具体使用
2020/02/10 Python
如何将anaconda安装配置的mmdetection环境离线拷贝到另一台电脑
2020/10/15 Python
.NET面试10题
2014/02/24 面试题
军训自我鉴定范文
2014/02/13 职场文书
学习十八大的心得体会
2014/09/01 职场文书
热情服务标语
2014/10/07 职场文书
2014年教师工作总结
2014/11/10 职场文书
文明倡议书
2015/01/19 职场文书
爱牙日宣传活动总结
2015/02/05 职场文书
2015年党员个人工作总结
2015/05/13 职场文书
2015年车间管理工作总结
2015/07/23 职场文书
行为规范主题班会
2015/08/13 职场文书
《清澈的湖水》教学反思
2016/02/17 职场文书
MySQL数据库必备之条件查询语句
2021/10/15 MySQL