码迷,mamicode.com
首页 > 编程语言 > 详细

python-高级编程-03

时间:2017-06-26 13:41:52      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:dem   blog   function   tar   输出   功能   start   ret   增强   

【装饰器】

 将方法和函数封装,使之可以对其他函数的功能进行增强。

#coding:utf8
def mydecorator(function):
    def _mydecorator(*args,**kw):

        #在调用实际函数之前的准备工作
        print ‘start‘
        res = function(*args,**kw)
        #做完某项填充工作
        print ‘end‘
        return res
    return _mydecorator

@mydecorator
def demo():
    print ‘This is test‘

demo()

 输出

start
This is test
end

  

python-高级编程-03

标签:dem   blog   function   tar   输出   功能   start   ret   增强   

原文地址:http://www.cnblogs.com/nerdlerss/p/7079920.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!