Wildcard for arbitrary generic List

前端 未结 2 883
鱼传尺愫
鱼传尺愫 2021-01-27 05:35

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

相关标签:
2条回答
  • 2021-01-27 06:09

    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.

    0 讨论(0)
  • 2021-01-27 06:18

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

    0 讨论(0)
提交回复
热议问题