这是一个两部分的问题。
首先
,我有一个名为 ComponentList 的类,如下所示:
public class ComponentList<T> : List<T> where T : Component
{
}
现在我想创建一个无类型 ComponentLists 的空列表:
List<ComponentList<>> MasterList = new List<ComponentList<>>();
我收到一个错误,因为 ComponentList 想要指定一个泛型类型,即使我还没有尝试初始化任何 ComponentLists(只是包含它们的 MasterList)。如何在不初始化任何 ComponentLists 的情况下声明 ComponentLists 的 MasterList(因为我计划在运行时使用仅在运行时知道的类型来初始化它们)?毕竟,MasterList 需要包含不同泛型类型的 ComponentList,而不仅仅是一个。
其次
,我知道以前有人问过这个问题,但我似乎无法理解任何提议的解决方案的概念。
如您所知,我有一个List<>
名为 MasterList 的列表,它是 ComponentLists(自定义类)的列表。ComponentList 是未定义类型的泛型类(被限制为 Component 的子类型)。
在下面的示例中,我尝试检查 ComponentList 泛型类型(从 MasterList 引用)是否与此类(调用代码的类)相同。
if (MasterList[i].GetType() == typeof(ComponentList<this.GetType()>))
{
}
问题是,代码是从未知的子类中自动调用的,而不是从这个父类中调用的。所以 ComponentList 泛型类型需要和子类的类型进行比较,而不是这个基类。因此,“this.GetType”代替了实际基类的硬编码名称。
this.GetType()
ComponentList<> 中传递的类型显然返回“预期类型”错误,因为返回GetType()
编译时类型,而不是运行时类型(这是我需要的)。
那么我怎样才能获得运行时类型呢?如果我做不到,那么完成我想做的事情的最佳选择是什么?(我听说过一些叫做反射的东西可能对我有帮助,但我真的不明白)。