類方法和實例方法同名,實例調用

class People(object): country = 'china' def __init__(self,name): self.country = name def getCountry(self): # -- 實例方法 return self.country #類方法,用classmethod來進行修飾
相關文章
相關標籤/搜索