## 概述
装饰器本身是一个函数,用于装饰其他函数和类。
> **函数装饰器**在函数定义的时候进行名称重新绑定,提供一个逻辑层来管理函数和方法或随后对他们调用。
函数装饰器,增强被装饰 函数的功能,实现函数在不同环境的复用 。
> **类装饰器**在类定义的时候进行名称重新绑定,提供一个逻辑层来管理类或管理随后调用它们所创建的实例。
### 应用
有切面需求的插入日志,性能测试,事务处理
### 举例
```python
def deco(func):
def wrapper(x):
print "Say >>>."
func(x)
print "end..."
return wrapper
@deco
def show(x):
print x
```
```python
show('hiyang')
Say >> >.
hiyang
end...
```
图示说明
![](http://qiniu.echosoul.cn/17-9-1/67538842.jpg)
* 不带参数,不带返回值
![](http://qiniu.echosoul.cn/dec.gif)
* 带参数,不带返回值
![](http://qiniu.echosoul.cn/dec2.gif)
* 带参数,带返回值
![](http://qiniu.echosoul.cn/dec3.gif)
## 带参数的装饰器
~~~python
# 进化前
def tips(func):
def process(a, b):
print("calculate start...")
func(a, b)
print("calculate stop...")
return process
@tips
def add(a, b):
print(a+b)
@tips
def sub(a, b):
print(a-b)
add(1, 2)
sub(1, 2)
~~~
~~~ python
# 进化后
def enhance_tips(method):
def tips(func):
def process(a, b):
print("calculate %s start..." % method)
func(a, b)
print("calculate %s stop..." % method)
return process
return tips
@enhance_tips("add")
def add(a, b):
print(a+b)
@enhance_tips("sub")
def sub(a, b):
print(a-b)
add(1, 2)
sub(1, 2)
~~~
- 前言
- 环境搭建
- pypi
- 打包
- Python 2 和 Python 3 的版本之间差别
- 项目
- 第一部分
- 第1章 基础
- Python安装
- python代码文件类型
- python对象
- 核心数据类型
- 核心数据类型--整型和浮点型
- 核心数据类型--字符串
- str.format
- 核心数据类型--列表
- 核心数据类型--元组
- 核心数据类型--字典
- 核心数据类型--集合
- 核心数据类型--文件对象
- 调用bash
- 标准输入输出
- str-repr
- 字符编码
- 迭代器和生成器
- 第2章 语句和语法
- 赋值语句
- if语句
- while语句
- for语句
- assert
- 第3章 函数
- 函数作用域
- 工厂函数
- 内置函数
- 递归
- 嵌套作用域和lambda
- 参数传递
- 函数式编程
- property可写与可读
- 第5章 模块
- 模块导入
- 模块命名空间
- 相对导入和绝对导入
- 模块重载
- 在模块中隐藏数据
- 过渡性重载
- 第6章 类
- 面向对象还是面向过程?
- 构造函数 析构函数
- call
- 运算符重载
- str()
- 待定
- 即时生成属性
- 多态
- 线程和进程
- thread模块
- threading模块
- threading线程锁
- 糖果机
- multiprocessing
- 阻塞非阻塞同步异步
- 单线程和多线程对比
- 生产者消费者模型
- 第二部分
- 获取系统资源信息
- 获取进程所占的物理内存
- dmidecode获取系统信息
- 网络编程
- 网络基础
- python中的套接字
- socket模块
- 第三部分 高级功能
- 闭包入门
- 闭包的应用
- 装饰器入门
- 装饰器应用
- 第四部分 项目实战
- graphite
- 模块
- collections
- datetime
- Enum
- faker
- fabric
- fileinput
- fire
- fnmatch
- getpass
- glob
- hashlib
- heapq
- json模块
- log
- os
- Paramiko
- parser
- platform
- pyyaml
- Queue
- random
- re
- 特殊符号和字符
- re模块
- shelves
- subprocess
- time
- urllib_urllib2_requests
- urllib urllib2
- requests
- 标准模块ConfigParser
- 扩展模块Mysqldb
- 扩展模块dns
- 扩展模块request
- uuid
- cacheout 缓存库
- delorean 时间
- 附录
- 内置函数
- python实现各种排序算法
- 常见报错
- pymongo
- pyrocksdb
- 常用
- ERROR