装饰器
装饰器是一种函数,用来装饰其他函数
原则:不能修改被装饰函数的源代码
不能修改被装饰函数的调用方式
装饰器对被装饰函数完全透明
实现装饰器
1.函数即“变量”(把函数当做一个变量处理)
2.高阶函数
在函数中声明另一个函数叫高阶函数
a.把函数名当做实参传入另一个函数
b.返回值中包含函数名
3.嵌套函数
高阶函数+嵌套函数=>装饰器
‘’’
import time
def timer(func):#timer(test1) func=test1
def deco(*args,**kwargs):
start_time = time.time()
func(*args,**kwargs)
stop_time = time.time()
print(“the function run time is %s” %(stop_time-start_time))
return deco
@timer#test1 = timer(test1)
def test1():
time.sleep(2)
print(“this is test1”)
@timer#test2=timer(test2)=deco test2()==deco()
def test2(name):
time.sleep(4)
print(“this is test2”,name)
test1()
test2(name)
‘’’
name = “jiang”
password = “123”
def auth(auth_type):
print(“auth func”,auth_type)
def out_wapper(func):
def wrapper(*args,**kwargs):
print(“wrapper func args”,*args,**kwargs)
user_name = input(“请输入用户名:”).strip()
user_password = input(“请输入密码:”).strip()
if auth_type == "local":
if user_name == name and user_password == password:
res = func(*args,**kwargs)
print("登陆成功")
return res
else:
exit("输入错误")
elif auth_type == "ldap":
print("搞什么ldap")
return wrapper
return out_wapper
def index():
print(“welcome to index page”)
@auth(auth_type = “local”)#home = wrapper
def home():
print(“welcome to home page”)
return “from home”
@auth(auth_type = “ldap”)
def bbs():
print(“welcome to bbs page”)
index()
home()
print(home())
bbs()