gpt4 book ai didi

java - 按字典顺序比较两个可能为 null 的 Java 字符串

转载 作者:行者123 更新时间:2023-12-05 00:48:05 25 4
gpt4 key购买 nike

有没有JDK方法或者ComparatorAB (或两者,或两者都不是)可能是 null

我不太关心 null 值在排序中是排在第一位还是最后。

请注意,我不是在寻找 Objects#equals(Object a, Object b) .我正在寻找具有以下原型(prototype)的 JDK 方法:

public int compare(String a, String b) ...

或者,或者,按照以下行的 JDK 类

public class StringComparatorWithNulls implements Comparator<String> {
@Override
public int compareTo(String a, String b) {
if (null == a) {
return null == b ? 0 : -1;
} else if (null == b) {
return 1;
} else {
return a.compareTo(b);
}
}
}

如果 JDK 中没有任何东西可以做到这一点,那么广泛使用的开源库中的东西也可以做到这一点。

最佳答案

关于java - 按字典顺序比较两个可能为 null 的 Java 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30882835/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com