Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been reading a bit on the singleton concept. While not fully understanding it, I'd like to have my instance getter in my base class.

For example, my class base class RepositoryBase will have the following method:

private static RepositoryBase _instance;
public static RepositoryBase Instance
{
    get
    {
        if (_instance == null)
            _instance = new RepositoryBase();
        return _instance;
    }
}

Does this actually make sense? I believe that when a new child class (take for example UserRepository) inherits RepositoryBase, what it is still getting when retrieving Instance is an instance of the general class RepositoryBase and not an instance of UserRepository.

Is there any way I can make it such that Instance automatically returns the child class, while still remaining in the base class? Thanks!

share|improve this question

2 Answers

up vote 2 down vote accepted

You could try with a generic base class

abstract public class RepositoryBase<T>
    where T : RepositoryBase<T>, new()
{
    public static readonly T Instance = new T();
}

public class SpecificRepository : RepositoryBase<SpecificRepository>
{
}

Then use it like this

var obj = SpecificRepository.Instance;
share|improve this answer
But that is not really a singleton, but nothing more than a global variable. – EricSchaefer Jul 17 '12 at 18:01
@EricSchaefer: It is another way of implementing a singleton. Since the static variables are initialized the first time you access a member, it will still be lazy created. The oo-patterns are general ideas that do not specify specific implementations. At most they make suggestions. – Olivier Jacot-Descombes Jul 17 '12 at 18:04
Well, a statically initialized public static readonly variable isn't exactly a pattern, is it? I like the idea with the type argument, though. – EricSchaefer Jul 17 '12 at 18:23
@EricSchaefer Hm. I think that singletons are effectively read-only global variables. Could you please tell why do you think they are different? I am really interested in hearing your opinion on this. – Nikola Anusev Jul 17 '12 at 18:24
@EricSchaefer: Are you confusing "patterns" (German: Muster, Entwurfsmuster) and "properties" (German: Eigenschaften)? – Olivier Jacot-Descombes Jul 17 '12 at 18:31
show 5 more comments

Static members are not inherited, because they are static. That's why your take on it would not work anyway.

share|improve this answer
I can actually call it via UserRepository.Instance, so I guess to some extent you can still consider it inherited? – matt Jul 17 '12 at 17:58
It is accessible, but you could not provide a special implementation in the derived class, which defeats the whole purpose of the inheritance in this case. You could just as well call ´RepositoryBase.Instance´. – EricSchaefer Jul 17 '12 at 18:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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