如何创建父对象的列表,其中每个家长可以有子对象的列表?(How to create a list o

2019-10-18 02:03发布

2010年VB.NET,一个如何去创建父类的列表,其中每个家长都有它自己的子类的列表。 当子类的列表可以作为1名儿童少或多达几百子对象?

Answer 1:

Dim ChildList as generic.list(of object)
Dim ParentList as generic.list(of ChildList)

你可以像上面



Answer 2:

听起来像是你需要一个LinkedList对象:

链表外;

其中ParentType的是,有它自己的另一LinkedList的对象类:

Public Class ParentType

    Private myChildren As LinkedList<ChildType>

ChildType上面甚至可以替换为“ParentType的,”如果是完全一样的类的对象的列表。

有关LinkedList的更多详细信息: http://msdn.microsoft.com/en-us/library/6ky9a64s.aspx



文章来源: How to create a list of parent objects where each parent can have a list of child objects?