python_@classmethod
Posted jabbok
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_@classmethod相关的知识,希望对你有一定的参考价值。
class A(object): bar = 1 def func1(self): print (‘foo‘) @classmethod def func2(cls): print (‘func2‘) print (cls.bar) cls().func1() # 调用 foo 方法 A.func2() # 不需要实例化
classmethod 修饰符对应的函数不需要实例化,不需要 self 参数,但第一个参数需要是表示自身类的 cls 参数,可以来调用类的属性,类的方法,实例化对象等。
以上是关于python_@classmethod的主要内容,如果未能解决你的问题,请参考以下文章