Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im trying to sort through an arraylist of objects by a particular value within the object. What would be the best approach to do such a thing. Should I use Collections.sort() with some kind of comparator?

Im trying to sort a list of objects by a float value they hold in one of the variables.

EDIT: This is what I have so far:

public class CustomComparator implements Comparator<Marker> {
    @Override
    public int compare(Mark o1, Mark o2) {
        return o1.getDistance().compareTo(o2.getDistance());
    }
}

the error states: Cannot invoke compareTo(double) on the primitive type double.

Is it because a comparator cant return anything other than a certain type?

share|improve this question
1  
"Should I use Collections.sort() with some kind of comparator? " Yes, sounds like a good idea – Kennet Feb 2 '12 at 9:31
I dont know if it matters but the number of objects in the list will be as high as 80. Thats why Im kind of confused about using a comparator if that is the way to go because it only compares two values at once. – James andresakis Feb 2 '12 at 9:33
That's how the sorting works. First add one item to a list. When adding next; should this go before or after current in the list. When adding third item compare to first item in list, if after then compare to next item. And so on. – Kennet Feb 2 '12 at 9:41

5 Answers

up vote 5 down vote accepted

You should use Comparable instead of a Comparator if a default sort is what your looking for.

See here, this may be of some help - Java: What is the difference between implementing Comparable and Comparator?

Try this -

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class TestSort {

    public static void main(String args[]){

        ToSort toSort1 = new ToSort(new Float(3), "3");
        ToSort toSort2 = new ToSort(new Float(6), "6");
        ToSort toSort3 = new ToSort(new Float(9), "9");
        ToSort toSort4 = new ToSort(new Float(1), "1");
        ToSort toSort5 = new ToSort(new Float(5), "5");
        ToSort toSort6 = new ToSort(new Float(0), "0");
        ToSort toSort7 = new ToSort(new Float(3), "3");
        ToSort toSort8 = new ToSort(new Float(-3), "-3");

        List<ToSort> sortList = new ArrayList<ToSort>();
        sortList.add(toSort1);
        sortList.add(toSort2);
        sortList.add(toSort3);
        sortList.add(toSort4);
        sortList.add(toSort5);
        sortList.add(toSort6);
        sortList.add(toSort7);
        sortList.add(toSort8);

        Collections.sort(sortList);

        for(ToSort toSort : sortList){
            System.out.println(toSort.toString());
        }
    }

}

public class ToSort implements Comparable{

    private Float val;
    private String id;

    public ToSort(Float val, String id){
        this.val = val;
        this.id = id;
    }

    @Override
    public int compareTo(Object o) {

        ToSort f = (ToSort)o;

        if (val.floatValue() > f.val.floatValue()) {
            return 1;
        }
        else if (val.floatValue() <  f.val.floatValue()) {
            return -1;
        }
        else {
            return 0;
        }

    }

    @Override
    public String toString(){
        return this.id;
    }
}
share|improve this answer
Hey thanks for the link :) I go back and forth from one language to the next so Im always missing something :p you know how it goes......jack of all trades but a master of none lol – James andresakis Feb 2 '12 at 21:02

Follow this code to sort any ArrayList

  Collections.sort(empList, new Comparator<Employee>(){
  public int compare(Employee emp1, Employee emp2) {
    return emp1.getFirstName().compareToIgnoreCase(emp2.getFirstName());
  }
});
share|improve this answer

i think this will help u better

Person p = new Person("Bruce", "Willis");
    Person p1  = new Person("Tom", "Hanks");
    Person p2 = new Person("Nicolas","Cage");
    Person p3 = new Person("John","Travolta");

    ArrayList<Person> list = new ArrayList<Person>();
    list.add(p);
    list.add(p1);
    list.add(p2);
    list.add(p3);

    Collections.sort(list, new Comparator(){

        public int compare(Object o1, Object o2) {
            Person p1 = (Person) o1;
            Person p2 = (Person) o2;
           return p1.getFirstName().compareToIgnoreCase(p2.getFirstName());
        }

    });
share|improve this answer
Good example. Thanks. – Andy Res Sep 14 '12 at 10:59

"Android-java" is here by no means different than "normal java", so yes Collections.sort() would be a good approach.

share|improve this answer
But how do I make it sort by a value within the object. Thats what Im stuck on. – James andresakis Feb 2 '12 at 9:38

Either make a Comparator that can compare your objects, or if they are all instances of the same class, you can make that class implement Comparable. You can then use Collections.sort() to do the actual sorting.

share|improve this answer
I went ahead and implemented Comparable in my class but and created a method to call sort on the list when i need to have it sorted but how do I sort it by a value with in the object? – James andresakis Feb 2 '12 at 9:42
The compareTo()-method is where you do the comparison. A little googling gave several detailed examples on how to use it, here is one of them: javadeveloper.co.in/java-example/java-comparable-example.html – Jave Feb 2 '12 at 9:45
I set up a method similar to the example however I get an error stating I cant use compareTo on a cast double. It seems like for what ever reason, what Im doing it doesnt like. Cannot invoke compareTo(double) on the primitive type double. Ill add my code up above to show what I mean – James andresakis Feb 2 '12 at 20:56

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.