python中装饰器装饰类中的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中装饰器装饰类中的方法相关的知识,希望对你有一定的参考价值。
1 ####在装饰器中加入self参数即可 2 def w_f(f): 3 def wrapper(self, *args, **kwargs): 4 f(self, *args, **kwargs) 5 # print(args[1]) 6 return wrapper 7 class school: 8 def __init__(self,name): 9 self.name = name 10 @w_f 11 def create_class(self): 12 self.class_num = ‘class_num‘ 13 self.course = ‘course‘ 14 15 class teacher: 16 def __init__(self,name,age): 17 self.name = name 18 self.age = age 19 20 class course: 21 def __init__(self,name,teacher): 22 self.name = name 23 self.teacher = teacher
以上是关于python中装饰器装饰类中的方法的主要内容,如果未能解决你的问题,请参考以下文章