靜態方法和類方法的定義

class DemoMthd: def __init__(self,x=0): self.x=x @staticmethod #靜態方法裝飾器 def static_mthd(): print('調用了靜態方法!') #print(self.x) #在靜態方法中不是使用實例屬性 @classmethod #類方法裝飾器 def class_mthd(cls):
相關文章
相關標籤/搜索