如何递归删除JTree中的所有节点?
在由 DefaultMutableTreeNodes
组成的 JTree
中,如何从给定 Node 及其所有祖先开始遍历和删除?
它应该从最深层开始删除,向上备份到给定的节点。给定的起始节点应该是最后要删除的节点。
in a JTree
comprised of DefaultMutableTreeNodes
, how would you traverse and delete starting from a given Node and all it's ancestors?
it should delete starting at it's deepest level , backing upwards to the given Node. the given starting node should be the last thing to remove.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
递归是你的朋友。
在伪代码中:
Recursion is your friend here.
In pseudo code: