访客模式和递归
在递归场景中使用访问者模式有什么优势吗? 如果是这样,你能以编程方式演示它吗?
Is there any advantage for using visitor pattern in a recursive scenario? If so can you demonstrate it programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
遍历二叉树怎么样? 例如
How about traversing a binary tree? e.g.
我认为主要的好处是它只需要对 1 层深度的集合进行迭代。 它可以回调,但至少accept()方法是干净的。
I think the main benefit is that it only requires iterations over collections 1 level deep. It can call back, but at least the accept() method will be clean.