Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list of objects of type A, and I have to order it for a field of A, which is of type String.

public class A{
    public String field1;
    public Integer field2;
    ...
}

If I had to order for the int field would have done so:

Collections.sort(listOfA, new Comparator<A>() {
        public int compare(A p1, A p2) {
            return p1.field2 - p2.field2);
            }
        });

But unfortunately need to order by the field of type String.

How can I do this?

share|improve this question
1  
Using subtraction in a compareTo method is in general dangerous because of integer overflows. Use Ints.compare from Google's Guava instead. – Roland Illig Jul 31 '11 at 14:34
1  
@Roland or just > = and < – Matt Ball Jul 31 '11 at 14:42
Yes, but in the case of <=> you have to spell out the operators and the result explicitly. I find it easier to just write return Ints.compare(a, b). – Roland Illig Jul 31 '11 at 20:44

3 Answers

up vote 4 down vote accepted
    public int compare(A p1, A p2) {
        return p1.field2.compareTo( p2.field2) );
        }
share|improve this answer

You could use String compareTo

share|improve this answer

Alternatively your class could implement interface Comparable, like this

public class A implements Comparable<A> {
  public String field1;
  public Integer flied2;

    public int compareTo(A o) {
        return this.field1.compareTo(o.field1);
    }

}

Which would allow you to

Collections.sort(listofA);

Which IMO is preferable/cleaner if A's are always sorted by field1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.