赞
踩
分析:
首先,要计算类的实例个数,那么需要使用类属性,而非实例属性,否则类无法实时知道自己被调用创建实例多少次
但是,如果类的属性(也称为该类的命名空间)定义(如 instanceNum=0)在类的作用域中,那么每次创建实例过程中,都会覆盖掉原来类中计算得到的instanceNum值而无法计数
因此,想要进行类的实例计数,那么就需要使用超类和继承;
使用超类作为专门计数的类,计数的属性作为类属性,子类作为正常类处理就可以,而需要在初始化重载中加入超类属性增加1即可
主要代码:
- # instanceCount.py
- # super class for count B
- class A:
- count = 0
-
- # sub class do things
- class B(A):
- def __init__(self):
- A.count += 1
-
- # 测试代码:
- if __name__=='__main__':
- a = B()
- b = B()
- print('B instance count: ',a.count)
- print('B instance count: ',b.count)
- print('B instance count: ',B.count)
结果:
- B instance count: 2
- B instance count: 2
- B instance count: 2
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。