本文介绍了如何在asp.net中使用递归函数(用于父子关系)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想为父子关系制作树。其中1父母有5个孩子然后如何解决它。
谢谢
i want to make tree for parent child relationship.where 1 parent have 5 child then so on,how to solve it.
thanks
推荐答案
sub ProcessTree(TreeToProcess as TreeTypeYouInvented)
' Process the parent node
ProcessParent()
if TreeToProcess.HasChildren then
' Call once for each child node
ProcessTree(TreeToProcess.ChildNode1)
...
ProcessTree(TreeToProcess.ChldNodeN)
end if
end sub
这篇关于如何在asp.net中使用递归函数(用于父子关系)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!