在这种情况下,如何通过向字典添加对象来实现多态?

时间:2018-12-22 22:49:01

标签: c# list dictionary polymorphism

Class Child实现了Parent:

ORDER BY

我可以将Child对象添加到Parent列表中。

Child : Parent{}

但是我如何将这个Child列表添加到此词典中?

List<Parent> var = new List<Parent>();

var.Add(new Child());

2 个答案:

答案 0 :(得分:0)

嗯,List<Child>Child是完全不同的类型。 List<T>中使用的通用类型为Child的事实是无关紧要的。 Dictionary<string, Child>包含字符串键和子对象。 List<Child>是孩子吗?不,那怎么办?

答案 1 :(得分:0)

不能将List<Child>分配给List<Parent>变量。它们是不相关的类型。这是矛盾的“证明”。

假设可以将List<Child>分配给List<Parent>,那么编译器将允许这样做:

List<Parent> parents = new List<Child>();
parents.Add(new Child2()); // Child2 is another subclass of "Parent"

但是,这产生了一个矛盾。 parents实际上存储了一个List<Child>,它不能存储Child2个对象。


您可以在此处使用的解决方法是创建List<Parent>对象,并将Child对象添加到该列表中:

var.Add("string", new List<Parent>());
List<Child> children = new List<Child> { ... }
var["string"].AddRange(children);