Discuss / Python / 练习

练习

Topic source

松霜杨雪

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

class Student(object):

count = 0

def __init__(self, name):
    self.name = name
    self.__counter()

def __counter(self):
    Student.count = Student.count + 1

def get_count(self):
    return self.count

松霜杨雪

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

class Student(object):

count = 0

def __init__(self, name):
    self.name = name
    self.__counter()

def __counter(self):
    Student.count = Student.count + 1

下面的没用,去掉


  • 1

Reply