classmethod Python · 内置函数
装饰器,把方法变成类方法,能通过类名直接调用。
怎么用
@classmethod
小例子
class 狗:
@classmethod
def 叫(cls):
print('汪汪')
狗.叫()
运行结果
汪汪
官方文档:https://docs.python.org/zh-cn/3/library/functions.html#classmethod
在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条