发布网友
共1个回答
热心网友
class Box:
count = 0
def __init__(self):
Box.count += 1
b1 = Box()
b2 = Box()
print Box.count