vote up 2 vote down star

Hi! Suppose we are creating a generic control in .NET. E.g. a tree. I don't understand why people use this generic type definition

Control<T>

when in Object Oriented Programming I can use an abstract class or an interface:

Control<IItem> or Control<BaseClass>

So the only thing to do is that, their types must derive from that base class or implement the interface. Does it mean, that generic types are more convenient, because you I don't have to implement or inherit anything?

Thanks!

flag

2 Answers

vote up 2 vote down check

I think you a little bit confused. Generic types and abstract classes or Interface are not the same at all, they serves a different goals for different approaches in application design. Abstract classes, interfaces is for generalization of common functionality of entities group, while later on this API could be implemented differently, but since polymorphism is involved it will not care no one.

On other hand, some time you have very similar implementation of something and the only difference is the type of the objects you are working with, here you will need a generics, here you also would like to use polymorphism, but there is not point to multiply objects using inheritance only. For that purpose it's much clear, just to define an interface, make an implementation and let to the end user decide which kind of object he wants to use.

The best example is List, where the main purpose of list is to store element and List implementor should not care which type of objects you are going to use, so later you will be able just define List and make use of integer list.

link|flag
OK now I understand the difference, Thank you very much. – stefan Jul 8 at 9:28
Glad, I made a bit clear for you. – Artem Barger Jul 8 at 9:35
vote up 2 vote down

Because in your case of a tree control, defining a generic Tree control would mean that Tree items can be of any type (you can also add certain constrains).

When instantiating a control, you would of course have to declare your item type (like in your second code examples with IItem and BaseClass).

If your Tree control wouldn't be a generic type, you would have to create several controls for each item type.

Why not just use interface/abstractBase type?
If you would just use an interface/abstract as your Item concrete class, you would be constrained by it's definition. You'd only see it's properties and methods. With generic Tree control and whatever item type, you're still able to access all item's properties and methods regardless of its interface implementation or parent class inheritance...

link|flag
Yes thank you, that's what i wanted to hear. – stefan Jul 8 at 9:15
But I have 1 more question, what if I want to constraint the type T to have Parent and Children property and I don't use an interface. Is it possible? – stefan Jul 8 at 9:17
@stefan - constraints have to be expressed via interfaces, apart from a few simple things: it is a value type (where T : struct), or a reference type (where T : class), or that it has a default constructor (where T : new()) – Earwicker Jul 8 at 9:20
@stefan: of course you can do that as well without an interface as long as you define a class with those two properties and your item classes inherit from it. But it's generally much easier to use interface, because a class can implement multiple interfaces but inherit only one. – Robert Koritnik Jul 8 at 9:53
...inherit only one class. Sorry. – Robert Koritnik Jul 8 at 9:53

Your Answer

Get an OpenID
or

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