Python面向切面编程-语法层面和functools模块

时间:2014-08-28 16:12:49   收藏:0   阅读:166

1,Python语法层面对面向切面编程的支持(方法名装饰后改变为log)

__author__ = 'Administrator'

import time

def log(func):
    def wrapper(*args):
        start = time.time()
        func(args)
        end =time.time()
        print 'func used time is :', end - start
    return wrapper

@log
def reg(args):
    
     print 'welcome %s ' %(args[0])
        
reg('joeyon','123456')      

2,functools模块对面向切面的支持(方法名装饰后不改变)

import time
from functools import wraps

def log(func):
    @wraps(func)
    def wrapper(arg1,arg2):
        start = time.time()
        func(arg1,arg2)
        end =time.time()
        print 'func used time is :', end - start
    return wrapper

@log
def reg(username,pwd):
    
     print 'welcome %s ' %(username)
        
reg('joeyon','123456') 


评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!