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

python装饰器

时间:2019-01-07 21:10:30      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:func   装饰器   bar   python   col   一个   调用   nbsp   def   

1、python装饰器装之高阶函数

示例:

高阶函数
 1 import  time
 2 def bar():
 3     time.sleep(3)
 4     print(in the bar)
 5 def test1(func):
 6     print(func)   #打印这个func的内存地址
 7     return  func  #把函数的返回值返回
 8 #test1(bar)  #把bar传给func 相当于func = bar,把上面的bar函数传进来
 9 print(test1(bar)) #打印一下才能看到它的返回值 调用test1函数,bar这个函数传进来了,bar传给func了, 然后func函数里打印(func) 就出来第一个内存地址 完了结束后返回test1(bar)
10 test1(bar)

 

python装饰器

标签:func   装饰器   bar   python   col   一个   调用   nbsp   def   

原文地址:https://www.cnblogs.com/ilovelh/p/10234784.html

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