I want to limit the no. of direct instance of a class( in Java) say to n, i.e. at any time, not more than n direct objects of the class exist in the memory. But there is no such limit on the no. of objects of any subclass of this class. What code or algorithm should I use?
|
closed as not a real question by bmargulies, jonsca, PeeHaa 埽, Jocelyn, Zuul Sep 25 '12 at 23:15
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Use Factiory design pattern, through exception if your instances exceed more than you limit. http://www.oodesign.com/factory-pattern.html below is a rough sample implementation.
|
|||||
|
|
You can do:
|
|||
|
|
|
Java does not provide this possibility natively. I think you could manage yourself the case with a pooled Factory or directly in the class constructor. In the constructor you check on a static counter INSTANCES (defined as a private numeric in your class) if INSTANCES > MAX_LIMIT then you throws an exception. |
||||
|
|
|
I think doing this is a bad idea (not knowing your use case), but anyways... You can count all the instances by putting some code in the constructor of that class. If ignoring instances of subclasses is needed, check the value returned by To know when an instance is released, you can use weak references and a WeakHashMap to get an estimate of the number of instances still in use. The actual number of instances in use can be lower, because the garbage collection removes the instances at an unpredictable time. For an exact number you would need explicitly call some method when you know that an instance will no more be used. |
|||
|
|
