类方法和实例方法同名,实例调用

class People(object): country = 'china' def __init__(self,name): self.country = name def getCountry(self): # -- 实例方法 return self.country #类方法,用classmethod来进行修饰
相关文章
相关标签/搜索