Python3.5装饰器典型案例分析


Posted in Python onApril 30, 2019

本文实例讲述了Python3.5装饰器。分享给大家供大家参考,具体如下:

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author:ZhengzhengLiu
#高阶函数+嵌套函数==>装饰器
import time
def timer(func):    #timer(test1)-->func=test1
  def decor():
    start_time = time.time()
    func()     #run test1
    stop_time = time.time()
    print("the run time of func is %s" %(stop_time-start_time))
  return decor
@timer   #test1 = timer(test1)
def test1():
  time.sleep(3)
  print("in the test1")
@timer   #test2 = timer(test2)
def test2():
  time.sleep(3)
  print("in the test2")
print(timer(test1))     #打印deco的地址
#test1 = timer(test1)
#test2 = timer(test2)
test1()  #-->执行decor
test2()

运行结果:

<function timer.<locals>.decor at 0x00B720C0>
in the test1
the run time of func is 3.000171661376953
in the test2
the run time of func is 3.000171661376953

1、装饰器修饰有参数函数

#高阶函数+嵌套函数==>装饰器
import time
def timer(func):    #timer(test1)-->func=test1
  def decor(arg1,arg2):
    start_time = time.time()
    func(arg1,arg2)     #run test2
    stop_time = time.time()
    print("the run time of func is %s" %(stop_time-start_time))
  return decor
@timer   #test2 = timer(test2) = decor  test2(name)==>decor(name)
def test2(name,age):
  print("test2:",name,age)
test2("liu",23)

运行结果 :

test2: liu 23
the run time of func is 0.0

2、装饰器修饰多个函数,有的函数带参数,有的函数不带参数的情况(采用参数组)

#高阶函数+嵌套函数==>装饰器
import time
def timer(func):    #timer(test1)-->func=test1
  def decor(*args,**kwargs):
    start_time = time.time()
    func(*args,**kwargs)     #run test1
    stop_time = time.time()
    print("the run time of func is %s" %(stop_time-start_time))
  return decor
@timer   #test1 = timer(test1)
def test1():
  time.sleep(3)
  print("in the test1")
@timer   #test2 = timer(test2) = decor  test2(name)==>decor(name)
def test2(name,age):
  time.sleep(1)
  print("test2:",name,age)
#test1 = timer(test1)
#test2 = timer(test2)
test1()  #-->执行decor
test2("liu",23)

运行结果:

in the test1
the run time of func is 3.0036065578460693
test2: liu 23
the run time of func is 1.0084023475646973

更多关于Python相关内容可查看本站专题:《Python数据结构与算法教程》、《Python Socket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python入门与进阶经典教程》

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

Python 相关文章推荐
Django框架下在视图中使用模版的方法
Jul 16 Python
基础的十进制按位运算总结与在Python中的计算示例
Jun 28 Python
利用Python脚本生成sitemap.xml的实现方法
Jan 31 Python
Python第三方库h5py_读取mat文件并显示值的方法
Feb 08 Python
python中Lambda表达式详解
Nov 20 Python
Python基于WordCloud制作词云图
Nov 29 Python
Python字典底层实现原理详解
Dec 18 Python
详解pandas绘制矩阵散点图(scatter_matrix)的方法
Apr 23 Python
Python正则表达式高级使用方法汇总
Jun 18 Python
python中os.remove()用法及注意事项
Jan 31 Python
python 对xml解析的示例
Feb 27 Python
python3 删除所有自定义变量的操作
Apr 08 Python
python如何制作缩略图
Apr 30 #Python
Python3.5装饰器原理及应用实例详解
Apr 30 #Python
11个Python Pandas小技巧让你的工作更高效(附代码实例)
Apr 30 #Python
python制作图片缩略图
Apr 30 #Python
python获取微信企业号打卡数据并生成windows计划任务
Apr 30 #Python
使用Python实现企业微信的自动打卡功能
Apr 30 #Python
Python/Django后端使用PIL Image生成头像缩略图
Apr 30 #Python
You might like
2019十大人气国漫
2020/03/13 国漫
PHP脚本中include文件出错解决方法
2008/11/20 PHP
PHP手机号码归属地查询代码(API接口/mysql)
2012/09/04 PHP
thinkphp使用phpmailer发送邮件的方法
2014/11/24 PHP
smarty学习笔记之常见代码段用法总结
2016/03/19 PHP
PHP读取并输出XML文件数据的简单实现方法
2017/12/22 PHP
在js中使用&quot;with&quot;语句中跨frame的变量引用问题
2007/03/08 Javascript
javawscript 三级菜单的实现原理
2009/07/01 Javascript
jquery异步调用页面后台方法&amp;#8207;(asp.net)
2011/03/01 Javascript
事件绑定之小测试  onclick &amp;&amp; addEventListener
2011/07/31 Javascript
jquery 实现两级导航菜单附效果图
2014/03/07 Javascript
用js格式化金额可设置保留的小数位数
2014/05/09 Javascript
js制作带有遮罩弹出层实现登录注册表单特效代码分享
2015/09/05 Javascript
实践中学习AngularJS表单
2016/03/21 Javascript
基于bootstrap实现收缩导航条
2017/03/17 Javascript
vue3 源码解读之 time slicing的使用方法
2019/10/31 Javascript
Vue实现图书管理小案例
2020/12/03 Vue.js
python单例模式实例分析
2015/04/08 Python
Python爬虫中urllib库的进阶学习
2018/01/05 Python
Python使用pyodbc访问数据库操作方法详解
2018/07/05 Python
详解Python最长公共子串和最长公共子序列的实现
2018/07/07 Python
Django中URL的参数传递的实现
2019/08/04 Python
python关闭占用端口方式
2019/12/17 Python
python实现指定ip端口扫描方式
2019/12/17 Python
Python3 利用face_recognition实现人脸识别的方法
2020/03/13 Python
Python web如何在IIS发布应用过程解析
2020/05/27 Python
如何在 Matplotlib 中更改绘图背景的实现
2020/11/26 Python
解决virtualenv -p python3 venv报错的问题
2021/02/05 Python
Champion官网:美国冠军运动服装
2017/01/25 全球购物
全球采购的街头服饰和帽子:Urban Excess
2020/10/28 全球购物
简述synchronized和java.util.concurrent.locks.Lock的异同
2014/12/08 面试题
老人祝寿主持词
2014/03/28 职场文书
物流管理专业推荐信
2014/09/06 职场文书
法制工作总结2015
2015/07/23 职场文书
汽车修理厂管理制度
2015/08/05 职场文书
中秋节作文(五年级)之关于月亮
2019/09/11 职场文书