183

我正在compareTo()为这样的简单类实现方法(以便能够使用Collections.sort()Java 平台提供的其他好东西):

public class Metadata implements Comparable<Metadata> {
    private String name;
    private String value;

// Imagine basic constructor and accessors here
// Irrelevant parts omitted
}

我希望这些对象的自然排序是:1)按名称排序,2)如果名称相同,则按值排序;两种比较都应该不区分大小写。对于这两个字段,空值是完全可以接受的,因此compareTo在这些情况下不能中断。

想到的解决方案如下(我在这里使用“保护条款”,而其他人可能更喜欢单个返回点,但这不是重点):

// primarily by name, secondarily by value; null-safe; case-insensitive
public int compareTo(Metadata other) {
    if (this.name == null && other.name != null){
        return -1;
    }
    else if (this.name != null && other.name == null){
        return 1;
    }
    else if (this.name != null && other.name != null) {
        int result = this.name.compareToIgnoreCase(other.name);
        if (result != 0){
            return result;
        }
    }

    if (this.value == null) {
        return other.value == null ? 0 : -1;
    }
    if (other.value == null){
        return 1;
    }

    return this.value.compareToIgnoreCase(other.value);
}

这可以完成工作,但我对这段代码并不完全满意。诚然,它不是复杂,但相当冗长乏味。

问题是,您将如何减少冗长(同时保留功能)?如果有帮助,请随意参考 Java 标准库或 Apache Commons。使这(一点)更简单的唯一选择是实现我自己的“NullSafeStringComparator”,并将其应用于比较两个字段吗?

编辑 1-3: Eddie 是对的;修复了上面的“两个名字都为空”的情况

关于接受的答案

我在 2009 年问过这个问题,当然是在 Java 1.6 上,当时Eddie 的纯 JDK 解决方案是我首选的公认答案。直到现在(2017 年),我才开始改变它。

还有第 3 方库解决方案——一个 2009 Apache Commons Collections 一个和一个 2013 Guava 一个,都是我发布的——我在某个时间点确实更喜欢它们。

我现在将Lukasz Wiktor的干净Java 8 解决方案作为公认的答案。如果在 Java 8 上,这绝对应该是首选,而如今几乎所有项目都应该使用 Java 8。

4

17 回答 17

232

您可以简单地使用Apache Commons Lang

result = ObjectUtils.compare(firstComparable, secondComparable)
于 2012-04-05T09:29:22.743 回答
209

使用Java 8

private static Comparator<String> nullSafeStringComparator = Comparator
        .nullsFirst(String::compareToIgnoreCase); 

private static Comparator<Metadata> metadataComparator = Comparator
        .comparing(Metadata::getName, nullSafeStringComparator)
        .thenComparing(Metadata::getValue, nullSafeStringComparator);

public int compareTo(Metadata that) {
    return metadataComparator.compare(this, that);
}
于 2014-05-28T09:57:35.027 回答
96

我会实现一个空安全比较器。那里可能有一个实现,但这实现起来非常简单,我总是自己动手。

注意:上面的比较器,如果两个名称都为空,则甚至不会比较值字段。我不认为这是你想要的。

我将通过以下方式实现这一点:

// primarily by name, secondarily by value; null-safe; case-insensitive
public int compareTo(final Metadata other) {

    if (other == null) {
        throw new NullPointerException();
    }

    int result = nullSafeStringComparator(this.name, other.name);
    if (result != 0) {
        return result;
    }

    return nullSafeStringComparator(this.value, other.value);
}

public static int nullSafeStringComparator(final String one, final String two) {
    if (one == null ^ two == null) {
        return (one == null) ? -1 : 1;
    }

    if (one == null && two == null) {
        return 0;
    }

    return one.compareToIgnoreCase(two);
}

编辑:修复了代码示例中的拼写错误。这就是我没有先测试它的结果!

编辑:将 nullSafeStringComparator 提升为静态。

于 2009-01-26T23:35:34.430 回答
21

有关使用 Guava 的更新(2013)解决方案,请参阅此答案的底部。


这就是我最终选择的。事实证明,我们已经有了一个用于 null 安全字符串比较的实用方法,所以最简单的解决方案就是利用它。(这是一个很大的代码库;很容易错过这种事情 :)

public int compareTo(Metadata other) {
    int result = StringUtils.compare(this.getName(), other.getName(), true);
    if (result != 0) {
        return result;
    }
    return StringUtils.compare(this.getValue(), other.getValue(), true);
}

这是帮助器的定义方式(它被重载,因此您还可以定义空值是第一个还是最后一个,如果需要):

public static int compare(String s1, String s2, boolean ignoreCase) { ... }

因此,这与Eddie 的答案基本相同(尽管我不会将静态辅助方法称为比较器)以及uzhin 的答案

无论如何,总的来说,我会强烈支持Patrick 的解决方案,因为我认为尽可能使用已建立的库是一个好习惯。(正如 Josh Bloch 所说,了解并使用这些库。)但在这种情况下,这不会产生最干净、最简单的代码。

编辑(2009):Apache Commons Collections 版本

实际上,这是一种使基于 Apache Commons 的解决方案NullComparator更简单的方法。将它与类中提供的不区分大小写Comparator结合起来String

public static final Comparator<String> NULL_SAFE_COMPARATOR 
    = new NullComparator(String.CASE_INSENSITIVE_ORDER);

@Override
public int compareTo(Metadata other) {
    int result = NULL_SAFE_COMPARATOR.compare(this.name, other.name);
    if (result != 0) {
        return result;
    }
    return NULL_SAFE_COMPARATOR.compare(this.value, other.value);
}

现在这很优雅,我想。(只剩下一个小问题:CommonsNullComparator不支持泛型,因此存在未经检查的分配。)

更新(2013):番石榴版

将近 5 年后,这就是我如何解决我最初的问题。如果用 Java 编码,我(当然)会使用Guava。(而且肯定不是Apache Commons。)

将此常量放在某处,例如在“StringUtils”类中:

public static final Ordering<String> CASE_INSENSITIVE_NULL_SAFE_ORDER =
    Ordering.from(String.CASE_INSENSITIVE_ORDER).nullsLast(); // or nullsFirst()

然后,在public class Metadata implements Comparable<Metadata>

@Override
public int compareTo(Metadata other) {
    int result = CASE_INSENSITIVE_NULL_SAFE_ORDER.compare(this.name, other.name);
    if (result != 0) {
        return result;
    }
    return CASE_INSENSITIVE_NULL_SAFE_ORDER.compare(this.value, other.value);
}    

当然,这与 Apache Commons 版本几乎相同(两者都使用 JDK 的CASE_INSENSITIVE_ORDER),使用的nullsLast()是唯一特定于 Guava 的东西。这个版本更可取,因为作为依赖项,Guava 比 Commons Collections 更可取。(每个人都同意。)

如果您想知道Ordering,请注意它实现了Comparator. 它非常方便,特别是对于更复杂的排序需求,例如允许您使用compound(). 阅读订购说明了解更多信息!

于 2009-02-01T11:35:40.940 回答
13

我总是推荐使用 Apache commons,因为它很可能比你自己编写的要好。另外,你可以做“真正的”工作,而不是重新发明。

您感兴趣的类是Null Comparator。它允许您将空值设置为高或低。当两个值不为空时,您还可以给它自己的比较器以供使用。

在您的情况下,您可以有一个静态成员变量来进行比较,然后您的compareTo方法只是引用它。

类似的东西

class Metadata implements Comparable<Metadata> {
private String name;
private String value;

static NullComparator nullAndCaseInsensitveComparator = new NullComparator(
        new Comparator<String>() {

            @Override
            public int compare(String o1, String o2) {
                // inputs can't be null
                return o1.compareToIgnoreCase(o2);
            }

        });

@Override
public int compareTo(Metadata other) {
    if (other == null) {
        return 1;
    }
    int res = nullAndCaseInsensitveComparator.compare(name, other.name);
    if (res != 0)
        return res;

    return nullAndCaseInsensitveComparator.compare(value, other.value);
}

}

即使你决定自己动手,也要记住这个类,因为它在对包含空元素的列表进行排序时非常有用。

于 2009-01-27T00:04:44.137 回答
7

我知道它可能不能直接回答您的问题,因为您说必须支持空值。

但我只想指出,在 compareTo 中支持 null 不符合 Comparable 官方javadocs 中描述的 compareTo 合同:

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

因此,我要么明确抛出 NullPointerException,要么在取消引用 null 参数时第一次抛出它。

于 2013-07-24T06:19:49.437 回答
5

您可以提取方法:

public int cmp(String txt, String otherTxt)
{
    if ( txt == null )
        return otherTxt == null ? 0 : 1;
     
    if ( otherTxt == null )
          return 1;

    return txt.compareToIgnoreCase(otherTxt);
}

public int compareTo(Metadata other) {
   int result = cmp( name, other.name); 
   if ( result != 0 )  return result;
   return cmp( value, other.value); 

}

于 2009-01-26T23:38:38.773 回答
4

您可以将您的类设计为不可变的(Effective Java 2nd Ed. 对此有一个很好的部分,第 15 条:最小化可变性)并确保在构造时不可能有空值(并在需要时使用空对象模式)。然后您可以跳过所有这些检查并安全地假设这些值不为空。

于 2009-01-26T23:30:51.630 回答
3
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Comparator;

public class TestClass {

    public static void main(String[] args) {

        Student s1 = new Student("1","Nikhil");
        Student s2 = new Student("1","*");
        Student s3 = new Student("1",null);
        Student s11 = new Student("2","Nikhil");
        Student s12 = new Student("2","*");
        Student s13 = new Student("2",null);
        List<Student> list = new ArrayList<Student>();
        list.add(s1);
        list.add(s2);
        list.add(s3);
        list.add(s11);
        list.add(s12);
        list.add(s13);

        list.sort(Comparator.comparing(Student::getName,Comparator.nullsLast(Comparator.naturalOrder())));

        for (Iterator iterator = list.iterator(); iterator.hasNext();) {
            Student student = (Student) iterator.next();
            System.out.println(student);
        }


    }

}

输出是

Student [name=*, id=1]
Student [name=*, id=2]
Student [name=Nikhil, id=1]
Student [name=Nikhil, id=2]
Student [name=null, id=1]
Student [name=null, id=2]
于 2017-02-13T16:48:06.353 回答
2

我正在寻找类似的东西,这似乎有点复杂,所以我这样做了。我认为这更容易理解。您可以将其用作比较器或单衬里。对于这个问题,您将更改为 compareToIgnoreCase()。原样,空值浮动。如果你想让它们下沉,你可以翻转 1、-1。

StringUtil.NULL_SAFE_COMPARATOR.compare(getName(), o.getName());

.

public class StringUtil {
    public static final Comparator<String> NULL_SAFE_COMPARATOR = new Comparator<String>() {

        @Override
        public int compare(final String s1, final String s2) {
            if (s1 == s2) {
                //Nulls or exact equality
                return 0;
            } else if (s1 == null) {
                //s1 null and s2 not null, so s1 less
                return -1;
            } else if (s2 == null) {
                //s2 null and s1 not null, so s1 greater
                return 1;
            } else {
                return s1.compareTo(s2);
            }
        }
    }; 

    public static void main(String args[]) {
        final ArrayList<String> list = new ArrayList<String>(Arrays.asList(new String[]{"qad", "bad", "sad", null, "had"}));
        Collections.sort(list, NULL_SAFE_COMPARATOR);

        System.out.println(list);
    }
}
于 2014-10-07T16:38:53.273 回答
2

如果有人使用 Spring,还有一个类 org.springframework.util.comparator.NullSafeComparator 也可以为您执行此操作。像这样装饰你自己的与之媲美

new NullSafeComparator<YourObject>(new YourComparable(), true)

https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/util/comparator/NullSafeComparator.html

于 2016-01-19T12:33:46.090 回答
2

我们可以使用 java 8 在对象之间进行 null 友好的比较。假设我有一个带有 2 个字段的 Boy 类:字符串名称和整数年龄,我想先比较名称,然后如果两者相等,则比较年龄。

static void test2() {
    List<Boy> list = new ArrayList<>();
    list.add(new Boy("Peter", null));
    list.add(new Boy("Tom", 24));
    list.add(new Boy("Peter", 20));
    list.add(new Boy("Peter", 23));
    list.add(new Boy("Peter", 18));
    list.add(new Boy(null, 19));
    list.add(new Boy(null, 12));
    list.add(new Boy(null, 24));
    list.add(new Boy("Peter", null));
    list.add(new Boy(null, 21));
    list.add(new Boy("John", 30));

    List<Boy> list2 = list.stream()
            .sorted(comparing(Boy::getName, 
                        nullsLast(naturalOrder()))
                   .thenComparing(Boy::getAge, 
                        nullsLast(naturalOrder())))
            .collect(toList());
    list2.stream().forEach(System.out::println);

}

private static class Boy {
    private String name;
    private Integer age;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Integer getAge() {
        return age;
    }
    public void setAge(Integer age) {
        this.age = age;
    }
    public Boy(String name, Integer age) {
        this.name = name;
        this.age = age;
    }

    public String toString() {
        return "name: " + name + " age: " + age;
    }
}

结果:

    name: John age: 30
    name: Peter age: 18
    name: Peter age: 20
    name: Peter age: 23
    name: Peter age: null
    name: Peter age: null
    name: Tom age: 24
    name: null age: 12
    name: null age: 19
    name: null age: 21
    name: null age: 24
于 2016-03-18T18:24:19.710 回答
1

对于您知道数据不会有空值(对于字符串总是一个好主意)并且数据非常大的特定情况,如果您确定这是您的情况,您仍然需要在实际比较值之前进行三个比较,你可以优化一点。YMMV 作为可读代码胜过次要优化:

        if(o1.name != null && o2.name != null){
            return o1.name.compareToIgnoreCase(o2.name);
        }
        // at least one is null
        return (o1.name == o2.name) ? 0 : (o1.name != null ? 1 : -1);
于 2016-07-12T02:40:55.637 回答
1

使用 NullSafe Comparator的一种简单方法是使用它的 Spring 实现,下面是一个简单的示例供参考:

public int compare(Object o1, Object o2) {
        ValidationMessage m1 = (ValidationMessage) o1;
        ValidationMessage m2 = (ValidationMessage) o2;
        int c;
        if (m1.getTimestamp() == m2.getTimestamp()) {
            c = NullSafeComparator.NULLS_HIGH.compare(m1.getProperty(), m2.getProperty());
            if (c == 0) {
                c = m1.getSeverity().compareTo(m2.getSeverity());
                if (c == 0) {
                    c = m1.getMessage().compareTo(m2.getMessage());
                }
            }
        }
        else {
            c = (m1.getTimestamp() > m2.getTimestamp()) ? -1 : 1;
        }
        return c;
    }
于 2019-03-08T19:00:48.247 回答
0

另一个 Apache ObjectUtils 示例。能够对其他类型的对象进行排序。

@Override
public int compare(Object o1, Object o2) {
    String s1 = ObjectUtils.toString(o1);
    String s2 = ObjectUtils.toString(o2);
    return s1.toLowerCase().compareTo(s2.toLowerCase());
}
于 2015-08-11T15:39:24.760 回答
0

这是我用来对 ArrayList 进行排序的实现。空类被排序到最后。

就我而言,EntityPhone 扩展了 EntityAbstract,而我的容器是 List < EntityAbstract>。

“compareIfNull()”方法用于空安全排序。其他方法是为了完整性,展示如何使用 compareIfNull。

@Nullable
private static Integer compareIfNull(EntityPhone ep1, EntityPhone ep2) {

    if (ep1 == null || ep2 == null) {
        if (ep1 == ep2) {
            return 0;
        }
        return ep1 == null ? -1 : 1;
    }
    return null;
}

private static final Comparator<EntityAbstract> AbsComparatorByName = = new Comparator<EntityAbstract>() {
    @Override
    public int compare(EntityAbstract ea1, EntityAbstract ea2) {

    //sort type Phone first.
    EntityPhone ep1 = getEntityPhone(ea1);
    EntityPhone ep2 = getEntityPhone(ea2);

    //null compare
    Integer x = compareIfNull(ep1, ep2);
    if (x != null) return x;

    String name1 = ep1.getName().toUpperCase();
    String name2 = ep2.getName().toUpperCase();

    return name1.compareTo(name2);
}
}


private static EntityPhone getEntityPhone(EntityAbstract ea) { 
    return (ea != null && ea.getClass() == EntityPhone.class) ?
            (EntityPhone) ea : null;
}
于 2016-03-15T18:43:38.833 回答
0

如果你想要一个简单的 Hack:

arrlist.sort((o1, o2) -> {
    if (o1.getName() == null) o1.setName("");
    if (o2.getName() == null) o2.setName("");

    return o1.getName().compareTo(o2.getName());
})

如果你想把空值放在列表的末尾,只需在上面的方法中更改它

return o2.getName().compareTo(o1.getName());
于 2020-03-21T13:31:43.390 回答