vote up 0 vote down star

Should generics be used directly in code like so?

IList <String> someStrings;

public static void BlahProcessor(IList <String> blahStrings)

Or should you instead inherit from the generic and use that class like this:

public class BlahCollection : List <String>

BlahCollection someStrings;

public static void BlahProcessor(BlahCollection  blahStrings)

DUPLICATE OF: http://stackoverflow.com/questions/21715/listbusinessobject-or-businessobjectcollection

flag

67% accept rate

closed as exact duplicate by FlySwat Oct 10 '08 at 17:19

5 Answers

vote up 2 vote down

I think it depends on what you are trying to accomplish. I have created many functions that take or return a generic list (or generic list interface) and I have also created custom collections derived from a generic list. The benefit of deriving your own custom collection is really that you then have control over what happens during add/remove operations, etc.

link|flag
vote up 2 vote down

Nearly always the first one. You're defining the type of the parameter, but not its implementation. You are free to pass any implementation of IList. What if you wanted to use an existing implementation of IList (say ReallyFastList)? With the second option you're stuck because ReallyFastList won't extend your class.

I would only create a specific type if I wanted it to be more opaque - in which case I would use composition over inheritance, and contain the List rather than implement it.

link|flag
vote up 1 vote down

If you need to add additional functionality to the generic, then inherit it. Otherwise you'll almost always want to use the <> syntax directly. It makes your intentions clearer to anyone reading your code, and it allows for easier interfacing with other components. If you have a library that sends you an IList and your function takes a BlahCollection, it doesn't matter if there's no functional difference between the two, you will still need to do some funky casting/copying to pass the list into your function.

link|flag
vote up 0 vote down

If your List of Strings is actually just a list of strings, then leave it as a list of Strings. If your List of Strings, if it has to have specially formatted strings, or you want to encapsulate, some additional behavior, then create your own class that inherits from List. If the functionality operates on any given list of Strings, why not encapsulate that functionality in one spot. And it doesn't have to be static(and I wouldn't suggest it), Maybe make a factory to return an instance of a StringListProcessor.

link|flag
vote up -1 vote down

The problem I see with the first example is there is no way to determine from the code itself if my variable is meant to be passed to that method. That method would accept any generic IList of strings. Someone looking at this code would have to make a determination if that variable could be passed to that method and they could be wrong. This kind of code is not explicit enough for me.

The second example there is no ambiguity. The method is meant to be working with a particular type inherited from a closed generic. I know what it is meant for and I know what the variable is.

Additionally, if you create the inherited class like the second example you can hang methods off of it to operate on the collection. I find that without this there are a lot of static worker methods being created to manipulate these generic lists. I find that kind of un-oopy and, as I already stated, there is no way to ensure these methods are operating on the type of data they actually expect.

link|flag

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