python 基于类的装饰器。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 基于类的装饰器。相关的知识,希望对你有一定的参考价值。

class Decorator(object):
    """I am a class based decorator."""
    def __init__(self, f):
        self.f = f
    
    def __call__(self):
        print(self.f())
      
      
@Decorator
def testFunc():
  return "I was called."

以上是关于python 基于类的装饰器。的主要内容,如果未能解决你的问题,请参考以下文章

python python中基于类的装饰器的示例

了解使基于类的装饰器支持实例方法的技术[重复]

限速python装饰器

Python进阶-----类的装饰器及应用

基于类的视图的 Django 装饰器属性错误

Vue + Typescript - 使用基于类的装饰器导入错误