vote up 1 vote down star

I want all the functionality of Dictionary<TKey,TValue> but I want it as Foo<TKey,TValue>.
How should I go about doing this?
Currently I am using

class Foo<TKey,TValue> : Dictionary<TKey, TValue>
{   
    /*
     I'm getting all sorts of errors because I don't know how to 
     overload the constructors of the parent class.
    */
    // overloaded methods and constructors goes here.

    Foo<TKey,TValue>():base(){}
    Foo<TKey,TValue>(int capacity):base(capacity){}

}

What is the right way to overload constructors and methods of the parent class?

NOTE:I think I have misused the word 'overload' please correct it or suggest correction.

flag

You say (in the comment to my answer) that it is an implementation of the decorator pattern. Whatever it is exactly used for, I doubt that you should inherit from Dictionary, not even implement IDictionary. I think you should just write a regular class which holds a (private) dictionary to manage its state, and has some Add, Remove and Get kind of methods. – Stefan Steinegger Oct 20 at 19:58

2 Answers

vote up 6 vote down check

You were close, you just need to remove the type parameters from the constructors.

class Foo<TKey,TValue> : Dictionary<TKey, TValue>
{   
    Foo():base(){}
    Foo(int capacity):base(capacity){}
}

To override a method you can use the override keyword.

link|flag
2  
Not within the constructors, no... they're already within the type, so they already "have" the type parameters. – Jon Skeet Oct 20 at 14:33
Nope, TKey and TValue are now defined as part of the class. You don't need to redefine them in each method. – Jake Pearson Oct 20 at 14:33
and make them public, usually. – Henk Holterman Oct 20 at 14:35
2  
public has to be explicitly defined in C#, without it everything defaults to private. – Jake Pearson Oct 20 at 14:39
1  
Not quote everything defaults to private: class, struct and enum default to internal, whereas methods, properties and fields default to private. – ShellShock Oct 20 at 14:54
show 4 more comments
vote up 4 vote down

Not directly answering your question, just an advice. I would not inherit the dictionary, I would implement IDictionary<T,K> and aggregate a Dictionary. It is most probably a better solution:

class Foo<TKey,TValue> : IDictionary<TKey, TValue>
{   

    private Dictionary<TKey, TValue> myDict;

    // ...
}
link|flag
(+1) What do you recommend if I want to use just the Dictionary but with name Foo? – david Oct 20 at 14:50
Why would you do this? A kind of C-style typedef? – Stefan Steinegger Oct 20 at 14:53
That's a Decorator (en.wikipedia.org/wiki/Decorator_pattern). Possible drawback: You need to implement each connection from your class to your member dictionary manually. – The Chairman Oct 20 at 15:38
@Mao: that's true, you need to implement each method, but you also might find it practical to have full control. – Stefan Steinegger Oct 20 at 19:56

Your Answer

Get an OpenID
or

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