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

python装饰器(2)

时间:2017-09-02 19:09:03      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:cti   调用   输出   def   war   style   test   log   function   

 

1.以下代码,bar作为参数被test2调用。bar的原代码没变,但调用方式从bar()变成test2(bar) 不符合装饰器定义

 1 __author__ = "csy"
 2 
 3 def bar():
 4     print("in the bar")
 5 
 6 def test2(func):
 7     print(func)
 8     func()
 9 
10 test2(bar)

输出:

<function bar at 0x00000000006BFE18>
in the bar

 

2.以下代码bar的原代码没变,调用方式仍为bar(),符合装饰器定义

 1 __author__ = "csy"
 2 
 3 def test2(func):
 4     def warpper(*args,**kwargs):
 5         print(func)
 6         func()
 7     return warpper
 8 
 9 @test2
10 def bar():
11     print("in the bar1")
12 
13 bar()

输出:

<function bar at 0x0000000000A4FEA0>
in the bar1

如果去掉 第9行 @test2,则只会显示

in the bar1

证明装饰器功能已实现

python装饰器(2)

标签:cti   调用   输出   def   war   style   test   log   function   

原文地址:http://www.cnblogs.com/csy113/p/7467194.html

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