首页 > 代码库 > 装饰器

装饰器

实例1:

#!/usr/bin/env python
#-*- encoding:utf-8 -*-

def makebold(fn):
    def wrapped():
        return "<b>" + fn() + "</b>"
    return wrapped

def makeitalic(fn):
    def wrapped():
        return "<i>" + fn() + "</i>"
    return wrapped

@makebold
@makeitalic
def hello():
    return "hello world"

print hello()


本文出自 “挨刀客” 博客,请务必保留此出处http://chboy.blog.51cto.com/9959876/1931128

装饰器