473,503 Members | 4,272 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Generics and inheritance

Why isn't List<A> a subclass of List<B> if A is a subclass of B ?

This fact causes a lot of design problems. Making the generic collections
loose their type safty strength in large designs.
Maybe there is a design pattern to overcome this problem ? Or maybe someone
knows other related facts ?

Nov 16 '05 #1
4 1979
uriye <ur***@discussions.microsoft.com> wrote:
Why isn't List<A> a subclass of List<B> if A is a subclass of B ?

This fact causes a lot of design problems. Making the generic collections
loose their type safty strength in large designs.
Maybe there is a design pattern to overcome this problem ? Or maybe someone
knows other related facts ?


Suppose you have List<FileStream> and try to use it as a List<Stream> -
you would be able to add a List<NetworkStream> to it, which wouldn't be
good. (This is how arrays work, with runtime exceptions, and I'm not at
all sure it's ideal.)

So in fact, currently we *do* have type safe collections - but with
your suggestion, they wouldn't be type safe any more.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #2
Hi Jon,
Why isn't List<A> a subclass of List<B> if A is a subclass of B ?

This fact causes a lot of design problems. Making the generic collections
loose their type safty strength in large designs.
Maybe there is a design pattern to overcome this problem ? Or maybe someone
knows other related facts ?

Suppose you have List<FileStream> and try to use it as a List<Stream> -
you would be able to add a List<NetworkStream> to it, which wouldn't be
good. (This is how arrays work, with runtime exceptions, and I'm not at
all sure it's ideal.)

So in fact, currently we *do* have type safe collections - but with
your suggestion, they wouldn't be type safe any more.


Hmm, I don't get that explanation. Supposing I have a method

void LoadFrom(Stream stm)

That method can be type-safely called with a XyzStream, as long
the XyzStream is a subclass of Stream.

Now extrapolated:

void LoadFrom(List<Stream> list)

I'd naively expect to be able to pass a List<XyzStream> object
to that method, too.

bye
Rob
Nov 16 '05 #3
Robert Jordan <ro*****@gmx.net> wrote:
Suppose you have List<FileStream> and try to use it as a List<Stream> -
you would be able to add a List<NetworkStream> to it, which wouldn't be
good. (This is how arrays work, with runtime exceptions, and I'm not at
all sure it's ideal.)

So in fact, currently we *do* have type safe collections - but with
your suggestion, they wouldn't be type safe any more.
Hmm, I don't get that explanation. Supposing I have a method

void LoadFrom(Stream stm)

That method can be type-safely called with a XyzStream, as long
the XyzStream is a subclass of Stream.


Indeed - because any change to the value of stm is only visible within
the method. Note that if it were a pass-by-reference parameter, you
couldn't, for precisely the reason given below.
Now extrapolated:

void LoadFrom(List<Stream> list)

I'd naively expect to be able to pass a List<XyzStream> object
to that method, too.


And what would you expect to happen if LoadFrom contained:

list.Add (new MemoryStream());

?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #4
Hi Jon,
Now extrapolated:

void LoadFrom(List<Stream> list)

I'd naively expect to be able to pass a List<XyzStream> object
to that method, too.

And what would you expect to happen if LoadFrom contained:

list.Add (new MemoryStream());


Ok. Got it.

Thanks
Rob
Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1999
by: Eddie | last post by:
Hi, I've recently read the articles on generics in the .net framework (the next version) and just wanted to check a few points.. As I understand, generic class instances while being strongly...
3
1465
by: Pierre Y. | last post by:
Hi, I've just read that article : http://msdn.microsoft.com/library/en-us/dnvs05/html/csharp_generics.asp I'm asking something. Why are generics constraints not been implemented using...
6
1958
by: Thomas Tomiczek | last post by:
Ok, working my way through a complex library conversion to .NET 2.0 and C# 2.0 with generics I am totally stuck on one thing -if anyone sees the issue I would be more than glad. The situation is...
5
1150
by: PeterLawrance | last post by:
Hi, I would expect that inheritance through the parameters of a generic class would be fine however I get errors as below in the following code. Public Class Form1 Sub test() Dim xxx As...
12
2715
by: Michael S | last post by:
Why do people spend so much time writing complex generic types? for fun? to learn? for use? I think of generics like I do about operator overloading. Great to have as a language-feature, as...
2
4217
by: Daniel Billingsley | last post by:
Let's say I have: public class RootClass<T> { public virtual T GetOne() { return default(T); } }
5
2909
by: anders.forsgren | last post by:
This is a common problem with generics, but I hope someone has found the best way of solving it. I have these classes: "Fruit" which is a baseclass, and "Apple" which is derived. Further I have...
8
2405
by: Kris Jennings | last post by:
Hi, I am trying to create a new generic class and am having trouble casting a generic type to a specific type. For example, public class MyClass<Twhere T : MyItemClass, new() { public...
8
3156
by: mark.norgate | last post by:
I've run into a few problems trying to use generics for user controls (classes derived from UserControl). I'm using the Web Application model rather than the Web Site model. The first problem...
6
5427
by: =?Utf-8?B?UXVhbiBOZ3V5ZW4=?= | last post by:
I am trying to create a generics class with multiple constrains, as follows: public class KeyHandler<Twhere T : TextBoxBase, ComboBox When I try that, the compiler would complain: The class...
0
7194
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7070
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7267
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7316
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6976
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7449
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
3148
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1495
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
729
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.