python-静态方法staticmethod、类方法classmethod、属性方法property

类的普通方法python class Animal(object): def __init__(self,name): self.name = name def intro(self): print('there is a %s'%(self.name)) cat = Animal('cat') cat.intro() 静态类方法web class
相关文章
相关标签/搜索