处理比较器的最佳实践
如何处理null对象,它来自compareTo方法。这总是会导致空指针异常。解决这个问题的最好方法是什么。
How to handle null objects, which comes in compareTo method. This always causes nullpointer exception. What a is best way to solve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在调用“compareTo”方法之前检查对象。
像这样:
You can check the object before you call "compareTo" method.
like this:
从 Comparable 的详细文档中:
如果您不想处理 NullPointerException,请不要将 null 放入已排序的集合中。
From the fine documentation on Comparable:
Don't put null in a sorted collection if you don't want to handle NullPointerExceptions.