如何在python中在运行时查找类的实例
例如。
class Foo():
pass
class Bar(Foo):
def __init__(self, a):
print a
inst_b1 = Bar(3)
inst_b2 = Bar('Hello World!!!')
我如何找出存在多少个 Bar 类的实例以及运行时的名称?
另外,因为我想在运行时使用它们,将它们放在自定义字典中或从变量的通用字典中获取它(使用 vars())是更好的解决方案。
谢谢