在访问者模式中处理 null 的有效方法
想象一下,您有一个对象集合,并且使用访问者模式 - 您将如何最优雅地处理从集合中检索到的 null 值?
Imagine you have a collection of objets and you use the Visitor pattern - how would you handle null retrieved from the collection most elegantly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了放置
if (element != null) element.accept(visitor);
如果您使用的是番石榴或其他东西,您当然可以执行
过滤器
但这似乎有点矫枉过正。I can't see any way other than putting an
if (element != null) element.accept(visitor);
If you're using guava or something, you could of course do a
filter
but it seems like an overkill.您的问题要么需要某种特殊类型的可访问对象,要么您试图对访问者模式施加太多责任。
如果您确实有不能访问的有意义的对象,请尝试空对象模式。
Either your problem requires some special type of visitable objects or you're trying to impose too many responsibilities on your visitor pattern.
If you really have meaningful object which must not be visited try Null Object pattern.