Question

I have a class MyClass, which is not generic and contains and does something with an arbitrary TList. I wish to replace the TList with the generic TList, but MyClass has to stay non-generic. Since Delphi is invariant something like this doesn't work:

list1: TList<TObject>
list2: TList<MyType> //MyType extends TObject
[...]
list1 := list2

Furthermore there seems to be no non-generic Superclass of TList, just IEnumerable.

Is there a way to declare a placeholder/wildcard for TList with an arbitrary T?

Was it helpful?

Solution

This is a problem of missing support for Co- and Contravariance in Delphi. However if you know that you are just doing operations that are covariant (i.e. iterating the elements in the list) you can just hardcast your TList<MyType> to TList<TObject> given that MyType inherits from TObject.

Taking the example from the Wikipedia article you can handle a list of cats like a list of animals when you are just looping through and reading their names or something.

But you have to be careful with actions that need contravariance (i.e. adding elements).

Again the example you cannot put a dog into the list of animals because actually the list is a list of cats.

OTHER TIPS

The answer is no, this cannot be done. You cannot include in non-generic class, an object of a non-instantiated generic type.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top