Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
int [] numbers = {1,2,3,4};
ReverseSortComparator c = new ReverseSortComparator();

Arrays.sort(c, numbers);
share|improve this question
It is a custom comparator defined with a compareTo so that numbers can be compared in descending order – phoenix Jun 12 '11 at 19:58
1  
are you serious? read the API... – mre Jun 12 '11 at 19:58
Can you show source of ReverseSortComparator? – KrzyH Jun 12 '11 at 20:03
you should edit your question to state exactly what the problem is, for example give the error message if there's one. You should also add information about your custom comparator. – krtek Jun 12 '11 at 20:04
instead of implementing your own comparator, use an existing one (i.e. Arrays.sort(numbers, Collections.reverseOrder());) – mre Jun 12 '11 at 20:07

3 Answers

up vote 1 down vote accepted

There is no method in Arrays that takes a primitive array and a Comparator. You would have to have an Integer array, not an int array.

share|improve this answer

The first argument must be the array and the second one the Comparator :

Arrays.sort(numbers, c);

You can find more information in the documentation !

share|improve this answer
this still gives an error – phoenix Jun 12 '11 at 19:58
1  
@phoenix, what error? – mre Jun 12 '11 at 19:59
@phoenix Like @Ted said in another answer, there's a good chance you must have an Integer array instead of an int one. Next time, you can also gives the exact error instead of just stating there's one, this would be really helpful ;) – krtek Jun 12 '11 at 20:03
yes that fixed it - an Integer array is required and not primitive ints – phoenix Jun 12 '11 at 20:05

sort method accept array and comparator

<Object> void java.util.Arrays.sort(Object[] a, Comparator<? super Object> c)

There is error in your code.

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.