Python中類屬性有類屬性和執行個體屬性之分,類的方法也有不同的種類
執行個體方法
類方法
靜态方法
class DemoMthd():
@staticmethod#靜态方法
def static_mthd():
print("調用了靜态方法")
@classmethod#類方法
def class_mthd(cls):
print("調用了類方法")
DemoMthd.static_mthd()
DemoMthd.class_mthd()
dm=DemoMthd()
dm.static_mthd()
dm.class_mthd()