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

python 类装饰器

时间:2018-01-01 16:57:08      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:def   post   fun   self   定向   sel   col   python   class   

 1 class Test():
 2     def __init__(self, func):
 3         print(装饰器1)
 4         self.__func = func
 5 
 6     def __call__(self):
 7         print(装饰器2)
 8         self.__func()
 9 
10 @Test     #等价于test = Test(test),将test重定向到一个新的函数
11 def test():
12     print(函数)
13 
14 test()
1 装饰器1
2 装饰器2
3 函数

 

python 类装饰器

标签:def   post   fun   self   定向   sel   col   python   class   

原文地址:https://www.cnblogs.com/gundan/p/8166688.html

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