With a class in Python, how do I define a function to print every single instance of the class in a format defined in the function?
|
|
I see two options in this case: Garbage collector
This has the disadvantage of being very slow when you have a lot of objects, but works with types over which you have no control. Use a mixin and weakrefs
In this case, all the references get stored as a weak reference in a list. If you create and delete a lot of instances frequently, you should clean up the list of weakrefs after iteration, otherwise there's going to be a lot of cruft. Another problem in this case is that you have to make sure to call the base class constructor. You could also override Edit: The method for printing all instances according to a specific format is left as an exercise, but it's basically just a variation on the |
|||||||||
|
|
Same as almost all other OO languages, keep all instances of the class in a collection of some kind. You can try this kind of thing.
Now you can do this.
|
|||||||||||
|
|
Maybe you mean something like
A trivial example:
|
|||
|
|
|
Python doesn't have an equivalent to Smallktalk's #allInstances as the architecture doesn't have this type of central object table (although modern smalltalks don't really work like that either). As the other poster says, you have to explicitly manage a collection. His suggestion of a factory method that maintains a registry is a perfectly reasonable way to do it. You may wish to do something with weak references so you don't have to explicitly keep track of object disposal. |
||||
|
|
|
It's not clear if you need to print all class instances at once or when they're initialized, nor if you're talking about a class you have control over vs a class in a 3rd party library. In any case, I would solve this by writing a class factory using Python metaclass support. If you don't have control over the class, manually update the See http://www.onlamp.com/pub/a/python/2003/04/17/metaclasses.html for more information. |
|||
|
|
|
You'll want to create a static list on your class, and add a
|
||||
|
|