python图片切面_Python装饰器与面向切面编程

1. 概述

装饰器是一个很著名的设计模式,经常被用于有切面需求的场景,较为经典的有插入日志、性能测试、事务处理等。装饰器是解决这类问题的绝佳设计,有了装饰器,我们就可以抽离出大量函数中与函数功能本身无关的雷同代码并继续重用。概括的讲,装饰器的作用就是为已经存在的对象添加额外的功能。

Python从语法层为我们提供了非常好的实现装饰模式的方法。

2. 动机

如果不使用python

装饰器语法的话,我们如果想转换一个函数(或换句话说,给函数加上装饰器,例如将一个普通函数转变成类函数)的话,代码看起来是这样子的:'''

Created on 2011-12-14

@author: Ahan

'''class Foo(object):

def foo(self):

print("foo is called") pass

#Turn the method foo to a class method

foo = classmethod(foo)

if __name__ == '__main__':

Foo.foo() pass

可以想象,函数一多,代码的可读性就大大下降了。Python

提供了一个另一种优雅的方法来解决这个问题。修改后的代码如下:'''

Created on 2011-12-14

@author: Ahan

'''class Foo(object):

#Turn the method foo to a class method @classmethod

def foo(self):

print("foo is called") passif __name__ == '__main__':

Foo.foo() pass

代码量减少了,可读性也强了,函数的特性也很直观。

3. 当前语法

当前Python

的装饰器语法如下:@dec2@dec1def func(arg1, arg2, ...):pass

上面的代码相当于:def func(arg1, arg2, ...):

passfunc = dec2(dec1(func))

4. 装饰器的更多用法示例

我们可以使用Python

装饰器来更加直接了当地使用

staticmethod()

classmethod()

内置函数,但装饰器的作用远不止于此。

1.例如我们要定义一个函数,当程序退出的时候调用此函数。def onexit(f):

import atexit

atexit.register(f) return f

@onexitdef func():...

注意在真实场景中我们可能不会这么做,上面代码只是用作示例。

2.使用Python

装饰器实现单例模式。def singleton(cls):

instances = {} def getinstance():

if cls not in instances:

instances[cls] = cls() return instances[cls] return getinstance

@singletonclass MyClass:

...

3.给函数添加属性。def attrs(**kwds): def decorate(f): for k in kwds:

setattr(f, k, kwds[k]) return f return decorate

@attrs(versionadded="2.2",

author="Guido van Rossum")def mymethod(f):

...

4.声明类实现了某些接口。def provides(*interfaces):

"""

An actual, working, implementation of provides for

the current implementation of PyProtocols. Not

particularly important for the PEP text.

"""

def provides(typ):

declareImplementation(typ, instancesProvide=interfaces) return typ return provides

class IBar(Interface):

"""Declare something about IBar here"""

@provides(IBar)class Foo(object):

"""Implement something here..."""

作者:Jiang阿涵

链接:https://www.jianshu.com/p/ec40d690eac7

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值