是否可以在同一列表中添加更多不同类型的对象,我该怎么做?
我有一个基类和三个子类,我希望所有子类对象在同一个列表中。
答案 0 :(得分:11)
当然 - 只需使用基类型作为泛型类型参数创建一个列表:
List<Control> controls = new List<Control>();
controls.Add(new TextBox());
controls.Add(new Label());
controls.Add(new Button());
// etc
请注意,当您再次检索项目时,您只会知道&#34;然而,关于它们作为基本类型,如果要执行任何特定于子类型的操作,则需要进行转换。例如:
// Assuming you know that there's at least one entry...
Control firstControl = controls[0];
TextBox tb = firstControl as TextBox;
if (tb != null)
{
// Use tb here
}
如果您想要所有特定类型(或其子类型)的元素,您可以使用OfType<>
方法:
foreach (TextBox tb in controls.OfType<TextBox>())
{
// Use tb here
}
答案 1 :(得分:1)
假设你有类似的东西:
public class Base { }
public class DerivedA : Base { }
public class DerivedB : Base { }
public class DerivedC : Base { }
你可以:
List<Base> list = new List<Base>();
list.Add(new DerivedA);
list.Add(new DerivedB);
等...
答案 2 :(得分:0)
如果您将容器声明为包含指向对象的指针的列表,那么就可以这样,您可以无问题地向下转换并且仍然具有多态性。
将列表声明为指向基类的指针。