Python对一个函数应用多个装饰器 Python实现对一个函数应用多个装饰器的方法示例
快递小可 人气:0想了解Python实现对一个函数应用多个装饰器的方法示例的相关内容吗,快递小可在本文为您仔细讲解Python对一个函数应用多个装饰器的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Python,函数,装饰器,下面大家一起来学习吧。
本文实例讲述了Python实现对一个函数应用多个装饰器的方法。分享给大家供大家参考,具体如下:
下面的例子展示了对一个函数应用多个装饰器,可以加多个断点,在debug模式下,查看程序的运行轨迹。。。
#!/usr/bin/env python #coding:utf-8 def decorator1(func): def wrapper(): print 'hello python 之前' func() return wrapper def decorator2(func): def wrapper(): func() print 'hello python 之后' return wrapper @decorator1 @decorator2 def test(): print 'hello python!' test()
运行结果:
hello python 之前 hello python! hello python 之后
关于python装饰器的更多介绍,可参考本站:
希望本文所述对大家Python程序设计有所帮助。
加载全部内容