Discuss / Python / 给类绑定属性和给实例绑定属性的方法基本一致

给类绑定属性和给实例绑定属性的方法基本一致

Topic source

Superb来了

#1 Created at ... [Delete] [Delete and Lock User]

class Student(object): count=0 def init(self, name): self.name = name Student.count+=1


  • 1

Reply