Hi,

I have a class clsSubClass which inherits from clsClass.

When I instantiate an object of clsClass (MyClass), and I instantiate an
object from clsSubclass (MySubClass) I can do an "MyClass = MySubclass".

But when I declare two generic list of them ("Dim MyList1 as List(Of
clsClass)" and "Dim MyList2 as List(Of clsSubClass)"), I can't do an
"MyList1 = MyList2".

Why is this exactly, and is there a way to implement this behaviour?


Thanks a lot in advance,


Pieter

Re: List(Of clsClass) = List(Of clsSubClass) by Paul

Paul
Tue Jul 15 03:42:45 CDT 2008

"Pieter" <pieterNOSPAMcoucke@hotmail.com> wrote:

> When I instantiate an object of clsClass (MyClass), and I instantiate an
> object from clsSubclass (MySubClass) I can do an "MyClass = MySubclass".
> But when I declare two generic list of them ("Dim MyList1 as List(Of
> clsClass)" and "Dim MyList2 as List(Of clsSubClass)"), I can't do an
> "MyList1 = MyList2".
> Why is this exactly, and is there a way to implement this behaviour?

You can't do that because it would allow you to add superclass instances to
a list that, by its definition, is only supposed to contain subclass
instances.

Of course, you can write a loop to copy the elements to a separate list of
another type.

Eq.



Re: List(Of clsClass) = List(Of clsSubClass) by Jon

Jon
Tue Jul 15 03:44:16 CDT 2008

On Jul 15, 9:34=A0am, "Pieter" <pieterNOSPAMcou...@hotmail.com> wrote:
> I have a class clsSubClass which inherits from clsClass.
>
> When I instantiate an object of clsClass (MyClass), and I instantiate an
> object from clsSubclass (MySubClass) I can do an "MyClass =3D MySubclass"=
.
>
> But when I declare two generic list of them ("Dim MyList1 as List(Of
> clsClass)" and "Dim MyList2 as List(Of clsSubClass)"), I can't do an
> "MyList1 =3D MyList2".

Indeed. That's because generics don't exhibit variance.

> Why is this exactly, and is there a way to implement this behaviour?

Brief answer: consider this code.
List<Banana> bananaBunch =3D new List<Banana>();
List<Fruit> fruitbowl =3D bananaBunch;
fruitbowl.Add(new Apple());

Suppose this were legal - then bananaBunch would contain an Apple,
which is clearly invalid.

For a lot of detail, see Eric Lippert's series of blog articles:
http://blogs.msdn.com/ericlippert/archive/tags/Covariance+and+Contravarianc=
e/default.aspx

Jon

Re: List(Of clsClass) = List(Of clsSubClass) by Pieter

Pieter
Tue Jul 15 03:55:23 CDT 2008

Oh yes indeed you're right :-S I should have thought about that :-)

Although: An Import doesn't work neither, which should work in my opnion?
Because clsSubClass is also an clsClass: it shoudl be able to import these
items...


"Jon Skeet [C# MVP]" <skeet@pobox.com> wrote in message
news:e668d643-aa73-459a-b32c-b0f13f6a0b42@l64g2000hse.googlegroups.com...
On Jul 15, 9:34 am, "Pieter" <pieterNOSPAMcou...@hotmail.com> wrote:



Re: List(Of clsClass) = List(Of clsSubClass) by Jon

Jon
Tue Jul 15 04:10:08 CDT 2008

On Jul 15, 9:55=A0am, "Pieter" <pieterNOSPAMcou...@hotmail.com> wrote:
> Oh yes indeed you're right :-S I should have thought about that :-)
>
> Although: An Import doesn't work neither, which should work in my opnion?
> Because clsSubClass is also an clsClass: it shoudl be able to import thes=
e
> items...

What exactly would you expect an import to do? You just can't treat a
list of bananas as if it's a general list of fruit. You can create a
new list of fruit and copy the contents of a list of bananas into it,
of course.

Jon

Re: List(Of clsClass) = List(Of clsSubClass) by Marc

Marc
Tue Jul 15 04:13:59 CDT 2008

Well, what are you meaning by "import"? Any example code?

One good trick here is to use a generic method; I'll use C# syntax for
[my] familiarity:

public void DoSomething<T>(List<T> list) where T : clsClass
{

}

you can now pass a List<clsClass> or a List<clsSubClass>, but you
ideally want to talk about "T" inside the method. You are saying "I
have a list of [something], where that [something] is, or is derived
from, clsClass".

Marc

Re: List(Of clsClass) = List(Of clsSubClass) by Pavel

Pavel
Tue Jul 15 07:23:19 CDT 2008

On Jul 15, 12:34=A0pm, "Pieter" <pieterNOSPAMcou...@hotmail.com> wrote:
> Hi,
>
> I have a class clsSubClass which inherits from clsClass.
>
> When I instantiate an object of clsClass (MyClass), and I instantiate an
> object from clsSubclass (MySubClass) I can do an "MyClass =3D MySubclass"=
.
>
> But when I declare two generic list of them ("Dim MyList1 as List(Of
> clsClass)" and "Dim MyList2 as List(Of clsSubClass)"), I can't do an
> "MyList1 =3D MyList2".
>
> Why is this exactly, and is there a way to implement this behaviour?

It has already been explained why it doesn't work like that, but there
are workarounds, depending on what exactly you're trying to do.
Typically, you don't want variance on variables - you want it on
function arguments. In this case, you can use generics yourself. For
example, say, you have a function that should take an arbitrary
IEnumerable(Of BaseClass). You could write it like that:

Public Sub PrintAll(items As IEnumerable(Of BaseClass)
For Each item In items ...
End Sub

But then you won't be able to pass IEnumerable(Of DerivedClass) to
this function. The workaround is to do this:

Public Sub PrintAll(Of TItem As BaseClass)(items As IEnumerable(Of
TItem))
For Each item In Items ...
End Sub

Now that the function is explicitly declared as taking IEnumerable of
_any_ TItem which inherits from BaseClass, it can take IEnumerable(Of
DerivedClass) just fine.

Unfortunately, this workaround is for covariance only; you cannot do
usage-site contravariance with it (e.g. write a method that works on
any IList(Of TItem) such that it would support method Add(BaseClass)).

Re: List(Of clsClass) = List(Of clsSubClass) by Pieter

Pieter
Tue Jul 15 08:31:05 CDT 2008

Yes but I should be able to Import a list of Bananas into a list of Fruits?
But it doesn't work?

"Jon Skeet [C# MVP]" <skeet@pobox.com> wrote in message
news:218b3924-f208-4224-a99d-d3606d3fe6b5@l42g2000hsc.googlegroups.com...
What exactly would you expect an import to do? You just can't treat a
list of bananas as if it's a general list of fruit. You can create a
new list of fruit and copy the contents of a list of bananas into it,
of course.

Jon



Re: List(Of clsClass) = List(Of clsSubClass) by Pieter

Pieter
Tue Jul 15 08:32:55 CDT 2008

Ooops: The Import function is one we created ourselves: It takes a
BaseList(Of T) as argument.

"Marc Gravell" <marc.gravell@gmail.com> wrote in message
news:d86ffb1e-cb46-4cd8-9d41-476501e6bf78@79g2000hsk.googlegroups.com...
> Well, what are you meaning by "import"? Any example code?
>
> One good trick here is to use a generic method; I'll use C# syntax for
> [my] familiarity:
>
> public void DoSomething<T>(List<T> list) where T : clsClass
> {
>
> }
>
> you can now pass a List<clsClass> or a List<clsSubClass>, but you
> ideally want to talk about "T" inside the method. You are saying "I
> have a list of [something], where that [something] is, or is derived
> from, clsClass".
>
> Marc



Re: List(Of clsClass) = List(Of clsSubClass) by Jon

Jon
Tue Jul 15 09:11:48 CDT 2008

On Jul 15, 2:32=A0pm, "Pieter" <pieterNOSPAMcou...@hotmail.com> wrote:
> Ooops: The Import function is one we created ourselves: It takes a
> BaseList(Of T) as argument.

And what does it do, exactly? It's hard to say why something doesn't
work without seeing it...

Jon

RE: List(Of clsClass) = List(Of clsSubClass) by surturz

surturz
Tue Jul 15 20:49:28 CDT 2008

This code should do it. MyList1 will be a different List to MyList2, but the
elements inside will be the same. Changes to the membership of MyList2 will
not be reflected in MyList1, but changes to properties of the members in each
should be:

Dim MyList1 as New List(Of clsClass)
Dim MyList2 as New List(Of clsSubClass)
...
'Copy MyList2 into MyList1
MyList1.Clear
For i As Integer = 0 To MyList2.Count -1
MyList1.Add MyList2.Item(i)
Next i

--
David Streeter
Synchrotech Software
Sydney Australia


"Pieter" wrote:

> Hi,
>
> I have a class clsSubClass which inherits from clsClass.
>
> When I instantiate an object of clsClass (MyClass), and I instantiate an
> object from clsSubclass (MySubClass) I can do an "MyClass = MySubclass".
>
> But when I declare two generic list of them ("Dim MyList1 as List(Of
> clsClass)" and "Dim MyList2 as List(Of clsSubClass)"), I can't do an
> "MyList1 = MyList2".
>
> Why is this exactly, and is there a way to implement this behaviour?
>
>
> Thanks a lot in advance,
>
>
> Pieter
>
>
>

Re: List(Of clsClass) = List(Of clsSubClass) by Marc

Marc
Wed Jul 16 02:50:00 CDT 2008

On 15 Jul, 14:32, "Pieter" <pieterNOSPAMcou...@hotmail.com> wrote:
> Ooops: The Import function is one we created ourselves: It takes a
> BaseList(Of T) as argument.

So the generic method approach can be used (see below, again, using C#
syntax). Alternatively, in .NET 3.5 the LINQ "Cast" method can be used
as a one-liner, even with a regular List<T>:

fruits.AddRange(bananas.Cast<Fruit>());

Marc

== code ===

public class MyList<T> : List<T> {
public void Import<TOther>(IEnumerable<TOther> list)
where TOther : T {
foreach (TOther other in list) {
Add(other);
}
}
}
abstract class Fruit { }
class Banana : Fruit { }
class Tomato : Fruit { }

static void Main() {
MyList<Banana> bananas = new MyList<Banana>();
bananas.Add(new Banana());
bananas.Add(new Banana());

MyList<Fruit> fruits = new MyList<Fruit>();
fruits.Add(new Tomato());
fruits.Import(bananas);
}