vote up 8 vote down star
3

Ok, consider this common idiom that most of us have used many times (I assume):

class FooBarDictionary
{
    private Dictionary<String, FooBar> fooBars;

    ...

    FooBar GetOrCreate(String key)
    {
        FooBar fooBar;

        if (!fooBars.TryGetValue(key, out fooBar))
        {
            fooBar = new FooBar();
            fooBars.Add(key, fooBar);
        }

        return fooBar;
    }
}

Does it have any kind of established name?

(Yes, it's written in C#, but it can be "easily" transferred to C++. Hence that tag.)

flag

I always call it exactly that: GetOrCreate. – Joren Sep 22 at 20:25
3  
Doing C++, I always seem to have to use std::map<T>::find() because that stupid std::map<T>::operator[]() adds missing values and I just want to find those already there. Doing C#, I always seem to need "get-or-create" and have to write the above, since no operation as easy as that beautiful std::map<T>::operator[]() is available. Isn't that strange? – sbi Sep 22 at 20:26
Similar: stackoverflow.com/questions/1238386/… – Tom Dalling Sep 23 at 0:02
@sbi: Not only does std::map<T>::operator[]() add missing values, it also replaces what was already there. In some cases that's fine, but not for GetOrCreate - then you must use std::map<T>::find(). – Johann Gerell Sep 23 at 7:08
@Johann: It only replaces if you write to the reference handed out by std::map<T>::operator[](). If you just read from it, this doesn't happen. – sbi Sep 23 at 9:06
show 2 more comments

4 Answers

vote up 4 vote down check

Lazy Loading

http://en.wikipedia.org/wiki/Lazy%5Floading

link|flag
I'm not sure if this is exactly lazy-loading. Maybe smart lazy-loading. – Chris Dwyer Sep 22 at 20:21
vote up 4 vote down

I always call such functions obtainSomething().

link|flag
vote up 5 vote down

It sort of depends why you're doing it - the idiom is one I've seen be called memoization, caching, initialisation on demand, create on first use. Normally I call the method "ensureFoo" rather than "GetOrCreate"

link|flag
vote up 0 vote down

I'm unsure of overall programming name for the high level pattern, but Perl has this wonderful behavior called Autovivification - namely, automatically creating hash (map) key with undefined value when you're querying the value of non-existing key in the hash.

link|flag

Your Answer

Get an OpenID
or

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