vote up 2 vote down star
2

Often seen it and often used it, wonder if it has a name?

C# version:

public class Register
{
    protected Register()
    {
        Register.registry.Add(this);
    }

    public static ReadOnlyCollection<Register> Instances
    {
      get { return new ReadOnlyCollection<Register>(registry); }
    }

    private static List<Register> registry = new List<Register>();
}

it keeps a track of instances created if you couldn't work it out :)

Edit: it's just a snippet, don't get over excited about GC issues people

flag

54% accept rate
Garbage collector nightmare pattern? – DrJokepu Feb 17 at 15:52

5 Answers

vote up 4 vote down

A memory leak? No instances of Register will ever be collected, unless you provide a way to explicitly remove them from the static list "registry".

link|flag
Actually, the garbage collection issue can be avoided easily by usining WeakReference. – DrJokepu Feb 17 at 15:54
well indeed, it's just a snippet of the bit which is relevant – annakata Feb 17 at 15:55
Agreed WeekReference is a good solution, sorry if my post seemed rude but the memory probably is really the first thing that jumps out at me. – Robert Feb 17 at 16:26
Not rude, but fixated on a detail perhaps :) – annakata Feb 17 at 16:47
vote up 2 vote down

It not a Factory Pattern as it doesn't involve the use of a separate object to create the instances. It works more like a Lazy Initialization Pattern.

It is used when you need to control all instances of a class.

link|flag
hmm, shares a lot of the same features, but not factoried – annakata Feb 17 at 16:09
vote up 1 vote down

It reminds me somewhat of string interning.

link|flag
yeah I can kinda see the relationship there too, but interning seems like RS Conley's Lazy Init Pattern more than this. – annakata Feb 17 at 16:45
vote up 0 vote down

Looks like you are trying to keep track of all instances of an object... why?

link|flag
One live use case is for a status page which can report on all the live instances of the class. That implementation is actually abstract as well, so it's reporting on all the various flavours of instances. – annakata Feb 17 at 16:02
Can also use this to keep track of all the sessions that an application creates. This way you know how many users are active in the system. There are actually many more instances where you want to do this kind of thing in a stand-alone custom server. – sjbotha Feb 17 at 16:17
I can see the use for this kind of information, although maybe there are other approaches, such as profiling systems etc.. However, i don't know if this is a common pattern, with its own name. – baretta Feb 17 at 16:24
@sjbotha: ooh that's a solid example right there... – annakata Feb 17 at 16:46
@sjbotha: For tracking users online, you could consider using the database, or session state – baretta Feb 17 at 17:19
show 4 more comments
vote up 0 vote down

Singleton (of the collection).

whether the way it's used here constitutes a pattern or an anti-pattern, though: you be the judge. do you ever use it this way with inheritable objects?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.