处理比较器的最佳实践

发布于 2024-10-27 14:47:46 字数 60 浏览 2 评论 0原文

如何处理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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

扛起拖把扫天下 2024-11-03 14:47:46
public int compareTo(Object to) {
  if (to == null) return Integer.MIN_VALUE;
  // Now knowing it's not null, continue as before
}
public int compareTo(Object to) {
  if (to == null) return Integer.MIN_VALUE;
  // Now knowing it's not null, continue as before
}
沙与沫 2024-11-03 14:47:46

您可以在调用“compareTo”方法之前检查对象。

像这样:

if(obj != null){

  //TODO  

}

You can check the object before you call "compareTo" method.

like this:

if(obj != null){

  //TODO  

}
心清如水 2024-11-03 14:47:46

Comparable 的详细文档中:

请注意,null 不是任何类的实例,即使 e.equals(null) 返回 false,e.compareTo(null) 也应该抛出 NullPointerException。

如果您不想处理 NullPointerException,请不要将 null 放入已排序的集合中。

From the fine documentation on Comparable:

Note that null is not an instance of any class, and e.compareTo(null) should throw a NullPointerException even though e.equals(null) returns false.

Don't put null in a sorted collection if you don't want to handle NullPointerExceptions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文