python 各种装饰器示例(python3)

参考网址:

Python中的各种装饰器详解_python_脚本之家
http://www.jb51.net/article/63892.htm

一、函数式装饰器:

1、装饰器无参数,被装饰对象无参数

 1 def test(func):
 2     def _test():
 3         print(‘call the function {0}.‘.format(func.__name__))
 4         return func()
 5     return _test
 6
 7 @test
 8 def say():
 9     print(‘hello,world‘)
10
11 say()
12
13 输出:
14 call the function say.
15 hello,world

2、装饰器无参数,被装饰对象有参数

 1 def test(func):
 2     def _test(*args,**kw):
 3         print(‘call the function {0}.‘.format(func.__name__))
 4         return func(*args,**kw)
 5     return _test
 6
 7 @test
 8 def say(str1,length):
 9     print(str1[:length])
10
11 say(‘hello,world‘,5)
12
13 输出:
14 call the function say.
15 hello

3、装饰器有参数,被装饰对象无参数

 1 def  arg_test(str_arg):
 2     def test(func):
 3         def _test():
 4             print(‘call the function {0}.‘.format(func.__name__))
 5             print(str_arg)
 6             return func()
 7         return _test
 8     return test
 9
10 @arg_test(‘with arg‘)
11 def say():
12     print(‘hello,world‘)
13
14 say()
15
16 输出:
17 call the function say.
18 with arg
19 hello,world

如果装饰器有默认参数,则用@arg_test(),无参数的装饰器直接用@arg_test

4、装饰器有参数,被装饰对象有参数

 1 def  arg_test(str_arg):
 2     def test(func):
 3         def _test(*args,**kw):
 4             print(‘call the function {0}.‘.format(func.__name__))
 5             print(str_arg)
 6             return func(*args,**kw)
 7         return _test
 8     return test
 9
10 @arg_test(‘with arg‘)
11 def say(str1,length):
12     print(str1[:length])
13
14 say(‘hello,world‘,5)
15
16 输出:
17 call the function say.
18 with arg
19 hello

二、类装饰器

1、装饰器无参数,被装饰对象无参数

 1 class test(object):
 2     def __init__(self,func):
 3         self._func = func
 4
 5     def __call__(self):
 6         print(‘call the function {0}. ‘.format(self._func.__name__))
 7         return self._func()
 8
 9 @test
10 def say():
11     print (‘hello,world‘)
12
13 @test
14 def hehe():
15     print(‘hehe‘)
16
17 say()
18 hehe()
19
20 输出:
21 call the function say.
22 hello,world
23 call the function hehe.
24 hehe

2、装饰器无参数,被装饰对象有参数

 1 class test(object):
 2     def __init__(self,func):
 3         self._func = func
 4
 5     def __call__(self,*args,**kw):
 6         print(‘call the function {0}. ‘.format(self._func.__name__))
 7         return self._func(*args,**kw)
 8
 9 @test
10 def say(str1,length):
11     print (str1[:length])
12
13 say(‘hello,world‘,5)
14
15 输出:
16 call the function say.
17 hello

3、装饰器有参数,被装饰对象无参数

 1 class test(object):
 2     def __init__(self,info=‘de_arg‘):
 3         self._info = info
 4
 5     def __call__(self,func):
 6         def __call():
 7             print (self._info)
 8             print(‘call the function {0}. ‘.format(func.__name__))
 9             return func()
10         return __call
11
12
13 @test()
14 def say():
15     print (‘hello,world‘)
16
17 say()
18
19 输出:
20 de_arg21 call the function say. 22 hello,world

3、装饰器有参数,被装饰对象有参数

 1 class test(object):
 2     def __init__(self,info=‘de_arg‘):
 3         self._info = info
 4
 5     def __call__(self,func):
 6         def __call(*args,**kw):
 7             print (self._info)
 8             print(‘call the function {0}. ‘.format(func.__name__))
 9             return func(*args,**kw)
10         return __call
11
12
13 @test()
14 def say(str1,length):
15     print (str1[:length])
16
17 say(‘hello,world‘,5)
18
19 输出:
20 de_arg
21 call the function say.
22 hello
时间: 2024-10-28 21:43:56

python 各种装饰器示例(python3)的相关文章

【转】详解Python的装饰器

原文链接:http://python.jobbole.com/86717/ Python中的装饰器是你进入Python大门的一道坎,不管你跨不跨过去它都在那里. 为什么需要装饰器 我们假设你的程序实现了say_hello()和say_goodbye()两个函数. def say_hello(): print "hello!" def say_goodbye(): print "hello!" # bug here if __name__ == '__main__':

如何用python的装饰器定义一个像C++一样的强类型函数

Python作为一个动态的脚本语言,其函数在定义时是不需要指出参数的类型,也不需要指出函数是否有返回值.本文将介绍如何使用python的装饰器来定义一个像C++那样的强类型函数.接下去,先介绍python3中关于函数的定义. 0. python3中的函数定义 举个例子来说吧,比如如下的函数定义: 1 def fun(a:int, b=1, *c, d, e=2, **f) -> str: 2 pass 这里主要是说几点与python2中不同的点. 1)分号后面表示参数的annotation,这个

Python 函数装饰器入门

原文链接: --> A guide to Python's function decorators Python功能强劲,语法表现力强,尤其装饰器深深的吸引着我.在设计模式中,装饰器可以在不使用子类的情况下,动态的改变函数,方法以及类的功能.这个功能非常有用,特别在你想扩展函数的功能同时又不想改变原有的函数.的确,我们任意的实现装饰器设计模式,但是,python通过提供简单的语法和特性让装饰器的实现变的如此简单. 在本文中,我将用一组例子来深入浅入python 函数装饰器的功能,所有的例子都是在

对Python中装饰器(Decorator)的理解与进阶

有时候我们项目中的某些功能做些修改即需要对内部的某些函数添加一些附加功能,但是为了安全起见不想改变函数的源代码以及函数的调用方式,那么装饰器在这个地方会给我们带来很大的帮助. 装饰器(Decorator):(又叫语法糖) 定义:本质是函数,功能(装饰其它函数)就是为其他函数添加附加功能 原则:(1).不能修改被装饰的函数的源代码 (2).不能修改被装饰的函数的调用方式 1.先来实现一个简单的装饰器示例: #!/usr/bin/env python # -*- coding:utf-8 -*- #

【Python】装饰器实现日志记录

好的日志对一个软件的重要性是显而易见的.如果函数的入口都要写一行代码来记录日志,这种方式实在是太低效了,但一直没有找到更好的方法.后来用python写一些软件,了解到python的装饰器功能时,突然人品爆发,结合装饰器来记录日志那是绝对的简单有效! 下面简单演示一下用装饰器来协助记录Log,示例代码如下: [python] view plain copy print? #!/usr/bin/env python def trace_func(func): ''''' A decorate fun

Python札记 -- 装饰器补充

本随笔是对Python札记 -- 装饰器的一些补充. 使用装饰器的时候,被装饰函数的一些属性会丢失,比如如下代码: 1 #!/usr/bin/env python 2 3 def deco(func): 4 def wrapper(): 5 print "Wrap start" 6 func() 7 print "Wrap end\n" 8 return wrapper 9 10 @deco 11 def foo(): 12 """Do

Python中装饰器(转)

本文由 伯乐在线 - 7even 翻译,艾凌风 校稿.未经许可,禁止转载!英文出处:Simeon Franklin.欢迎加入翻译组. 好吧,我标题党了.作为 Python 教师,我发现理解装饰器是学生们从接触后就一直纠结的问题.那是因为装饰器确实难以理解!想弄明白装饰器,需要理解一些函数式编程概念,并且要对Python中函数定义和函数调用语法中的特性有所了解.使用装饰器非常简单(见步骤10),但是写装饰器却很复杂. 虽然我没法让装饰器变得简单,但也许通过将问题进行一步步的讲解,可以帮助你更容易理

详解Python的装饰器

Python中的装饰器是你进入Python大门的一道坎,不管你跨不跨过去它都在那里. 为什么需要装饰器 我们假设你的程序实现了say_hello()和say_goodbye()两个函数. def say_hello(): print "hello!" def say_goodbye(): print "hello!" # bug here if __name__ == '__main__': say_hello() say_goodbye() 但是在实际调用中,我们

进阶Python:装饰器 全面详解

进阶Python:装饰器 前言 前段时间我发了一篇讲解Python调试工具PySnooper的文章,在那篇文章开始一部分我简单的介绍了一下装饰器,文章发出之后有几位同学说"终于了解装饰器的用法了",可见有不少同学对装饰器感兴趣.但是那篇文章主要的目的是在介绍PySnooper,所以没有太深入的展开讲解装饰器,于是在这里就详细的介绍一些装饰器的使用. 装饰器是Python中非常重要的一个概念,如果你会Python的基本语法,你可以写出能够跑通的代码,但是如果你想写出高效.简洁的代码,我认