@staticmethod和@classmethod
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@staticmethod和@classmethod相关的知识,希望对你有一定的参考价值。
- @staticmethod:不需要表示自身对象的self和自身类的cls参数,就跟使用函数一样。
- @classmethod也不需要self参数,但第一个参数需要是表示自身类的cls参数。
class MyClass: def method(self): return ‘instance method called‘, self @classmethod def classmethod(cls): return ‘class method called‘, cls @staticmethod def staticmethod(): return ‘static method called‘ a = MyClass()
以上是关于@staticmethod和@classmethod的主要内容,如果未能解决你的问题,请参考以下文章
`staticmethod` 和 `abc.abstractmethod`:会融合吗?