vote up 3 vote down star
3

Basically I have a custom List class that contains different fruits. Assume that each fruit has an ID number that is stored in the list.

Is it better to have:

new AppleList();
new OrangeList();
new LemonList();

or

new FruitList<Fruit.Apple>();
new FruitList<Fruit.Orange>();
new FruitList<Fruit.Lemon>();

Things to consider:

  • All IDs are of type int.
  • The type of the fruit will not affect the implementation of the List itself. It will only be used by the client of the list, like an external method, etc.

I would like to use the one that is clearer, better in design, faster, more efficient, etc. Additionally if these above 2 techniques are not the best, please suggest your ideas.

EDIT: Btw Fruit is an enum if that wasn't clear.

flag

56% accept rate
you're doing a list of enums?? that's not really what lists are for. enums are a sort of list already. – John Sheehan Feb 27 at 21:47
Thanks, no not a list of enums. It's just there for type. ALl these lists will store ints, like 1,2,3,4. – Joan Venge Feb 27 at 21:50
I am really surprised how many people didn't understand that you are storing a list of integers. – Jonathan Allen Feb 27 at 22:00
I think part of the problem is the overly abstract nature of your question. Perhaps you should pose it in real word terms? – Mystere Man Feb 27 at 22:01
@Mystere Man: I don't think I can write this question any simpler. The actually usage is very complex and includes so many "redundant" info, that would take a lot of time to level up. But in effect, this question captures the essence of the problem. – Joan Venge Feb 27 at 22:03
show 3 more comments

8 Answers

vote up 0 vote down check

•All IDs are of type int.

•The type of the fruit will not affect the implementation of the List itself. It will only be used by the client of the list, like an external method, etc.

Given these two facts, I wouldn't bother with generics. I would put a normal property on FruitList to indicate which type of fruit it is.

link|flag
Thanks. Can you please tell me what you meant by normal property? – Joan Venge Feb 27 at 22:01
I think I see what you mean. – Joan Venge Feb 27 at 22:31
vote up 0 vote down

You should assume YAGNI unless you need it. Therefore, if you don't need antyhing more than you get in List, then just List<T>. If for some reason you have to override List, then create

FruitList<T> : List<T> where T : Fruit

If your lists diverge and are no longer polymorphic, then consider implementing your custom lists:

  • AppleList
  • OrangeList
  • LemonList

Try as best you can, however, to keep your inheritance hierarchy as flat as possible to avoid overcomplicating your solution.

link|flag
You were not listening. The list contains integers, not Fruits. – Jonathan Allen Feb 27 at 21:58
Actually I don't know this: is List not a sealed class? – Joan Venge Feb 27 at 21:58
List<T> is definitely not sealed. – Michael Meadows Feb 27 at 22:02
@Grauenwolf Joan stated that the ID is an int. If fruit was an int, then it would be impossible to do this: new FruitList<Fruit.Apple>(); which is included in the example. Apple must be a nested type of Fruit... but thanks for the constructive criticism. – Michael Meadows Feb 27 at 22:04
No, the List contains Fruit. Maybe only FruitList : List<T> would be enough, and FruitList<T> not necessary, but the answer is still correct. – gcores Feb 27 at 22:05
show 1 more comment
vote up -1 vote down

Didn't you say you have a list with different fruits? That would call for

List<FruityBase>
link|flag
Thanks, but my List has to be very different from the default List. – Joan Venge Feb 27 at 21:46
The question to ask yourself, then, is it really a list, or should you choose a different paradigm and nomenclature. – Michael Meadows Feb 27 at 21:50
You were not listening. The list contains intgers, not FruityBases. – Jonathan Allen Feb 27 at 21:57
@Michael: It's a list, it can be called other things but list makes sense. Also this is how it's gonna appear in the app, where the users aren't programmers, so when they see List, they will get it, instead of thing if it's the same as .NET List<T>. – Joan Venge Feb 27 at 22:00
vote up 1 vote down

Use the Generic list, no point in crating 3 lists and it's always good to keep a level of abstraction. (IFruit would be a good interface).

link|flag
IFruit is good for what? It wouldn't apply to the INTEGERS being stored in the list. – Jonathan Allen Feb 27 at 21:59
vote up 3 vote down

Reuse the generic collection classes and subclass them only if you're adding additional functionality. Keep your subclass implementation generic if you can. This is the least complex implementation.

link|flag
vote up 8 vote down

Use a combo:

public class AppleList : FruitList<Apple> { ... }
public class OrangeList : FruitList<Orange> { ... }
public class LemonList : FruitList<Lemon> { ... }

Put the common logic in the base list class:

public class FruitList<T> : List<T>
    where T : IFruit 
{ ... }
link|flag
Thanks, this wouldn't work I think. Because all fruit lists will be 100% the same. But I still need a way to distinguish them externally. – Joan Venge Feb 27 at 21:45
If they're all the same, then you can just have AppleList : List<Apple> – John Sheehan Feb 27 at 21:46
Thanks. Is Apple a class in your case? Also why inherit from List? Just wondering. – Joan Venge Feb 27 at 21:51
Because you get all the functionality of list that you can build on top of – John Sheehan Feb 27 at 22:29
vote up 8 vote down

If you use generics, is there a purpose to create the FruitList type? Could you just use List?

There won't be much difference in performance, so I say why create three different classes when one would do the same exactly thing? Use the generic solution.

link|flag
Thanks, yeah FruitList is necessary to implement new interfaces and also have some functionality in there that List doesn't. – Joan Venge Feb 27 at 21:43
Like what? Couldn't your functionality be served with Extension methods on a normal list? What do you mean by "necessary to implement new interfaces"? – Mystere Man Feb 27 at 21:45
I wouldn't recommend Extension methods in a class that have control of. – gcores Feb 27 at 21:46
@gcores: you won't recommend ext methods on a class that we have no control? Just wondering. – Joan Venge Feb 27 at 21:48
What is that supposed to mean? – Mystere Man Feb 27 at 21:48
show 12 more comments
vote up 4 vote down

It's much easier to maintain 1 generic list than 3 non-generic versions. If you really like the AppleList name you can always use the using trick to name a generic list

using AppleList=Fruit.FruitList<Fruit.Apple>
link|flag
If he really needs AppleList, then using a "trick" to make it look like AppleList doesn't actually make it an AppleList. – Max Schmeling Feb 27 at 21:42
I didn't know this syntax used thsi way. SO when I say AppleList, it will create FruitList<Fruit.Apple>? – Joan Venge Feb 27 at 21:44
@Joan yes that's correct – JaredPar Feb 27 at 21:47
@Max, I think you're misunderstanding the question. The OP is asking if they should create 3 list types or just one generic one. My solution is allowing for a "friendly" name for a generic list. They should in principle have all the same methods. – JaredPar Feb 27 at 21:48

Your Answer

Get an OpenID
or

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