zoukankan      html  css  js  c++  java
  • Python装饰器示例

      曾经有这么一个需求,想要将程序中跑的整个process友好地显示出来,这样子后来者在看log的时候,就能够很清楚地知道程序source code中function的调用逻辑,方便理解。在接触到装饰器之前,以为想要达到这样的目的,就需要在每个function的开始和结束的部分加上相应的code,现在装饰器帮忙解决了这个问题。

    #装饰器有许多方法,但最简单和最容易理解的方法是编写一个函数,返回封装原始函数调用的一个子函数
    
    #此处,原始函数为func,子函数为result,最终的装饰器就是decorator
    
    def decorator(func):
        def result(*args, **dic):
            print "Function --- %s is start" %func.__name__
            res = func(*args, **dic)
            print "Function --- %s is end" %func.__name__
            return res
        return result
        
    @decorator
    def test():
        print "This is test"
    
    
    test()
    
    ########  输出结果  ########
    
    Function --- test is start
    This is test
    Function --- test is end
  • 相关阅读:
    python学习day3--python基础
    python学习day2--python基础
    python学习day1--python基础
    包导入原则
    模块搜索路径
    继承顺序
    继承,派生,组合
    面向对象程序设计
    类和对象
    递归
  • 原文地址:https://www.cnblogs.com/Ice-Max/p/3376539.html
Copyright © 2011-2022 走看看