Python 中级遍 3 — 类方法@classmethod

类方法 就是针对 类对象的方法 在 类方法 的内部可以直接访问 类属性 或者调用其他的类方法
class Tool:
count = 10
@classmethod
def kind(cls):
print("这是 %s 个类方法" % cls.count)

def __init__(self):
print("这是初始化方法")

Tool.kind()

输出结果:这是 10 个类方法
类方法不用创建对象就可以直接调用 这样就可以不调用初始化方法

Python 中级遍 3 — 类方法@classmethod最先出现在Python成神之路

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/28440.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>