Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!news1.tnib.de!feed.news.tnib.de!news.tnib.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: v_borchert@despammed.com (Volker Borchert) Newsgroups: comp.lang.java.programmer Subject: Re: verbose sort Date: 2 Aug 2012 21:38:17 GMT Organization: Private site at Eddersheim, Germany Lines: 69 Distribution: world Message-ID: References: <501AC32E.55954.calajapr@time.synchro.net> <501AC32E.55955.calajapr@time.synchro.net> X-Trace: individual.net sBiG9jMy9EUmoQroMiKKbQFvbDVR8lmytwHX9IfbwbiVCK4u6mJZNmEYW7T2gLSJHn Cancel-Lock: sha1:Hns1wAGgKbKQb6NubAhR3VSe93w= Xref: csiph.com comp.lang.java.programmer:17007 Eric Sosman wrote: > To: bob smith > From: Eric Sosman > > On 8/2/2012 11:37 AM, bob smith wrote: > > I have some code that sorts a list like so: > > > > Vector my_list = new Vector(); > > > > > > Comparator c = new Comparator() { > > @Override > > public int compare(String object1, String object2) { > > if (object1 == null) > > return -1; > > if (object2 == null) > > return 1; > > object1 = object1.toLowerCase(); > > object2 = object2.toLowerCase(); > > return object1.compareTo(object2); > > }; > > }; > > > > Collections.sort(my_list, c); > > > > > > This seems like a lot of code for such a common operation. Is there a more > succinct way of doing this? > > Consider using compareToIgnoreCase(). Also, think about what > happens when two null's are compared: You should return zero rather than > declaring one of them "less than" the other, because otherwise your comparator > is inconsistent (you can have A > public int compare(String s1, String s2) { > if (s1 == null) > return s2 == null ? 0 : -1; > return s2 == null ? +1 : s1.compareToIgnoreCase(s2); > } I'd do it as a fastpath and GoF Decorator public final class NullFirstComparator implements Comparator { @NonNull private final Comparator delegate; public NullFirstComparator(@NonNull final Comparator delegate) { this.delegate = delegate; } public int compare(final T t1, final T t2) { if (t1 == t2) { return 0; } else if (t1 == null) { return -1; } else if (t2 == null) { return 1; } else { return delegate.compare(t1, t2); } } } Collections.sort(my_list, new NullFirstComparator(String.CASE_INSENSITIVE_ORDER)); -- "I'm a doctor, not a mechanic." Dr Leonard McCoy "I'm a mechanic, not a doctor." Volker Borchert