int [] numbers = {1,2,3,4};
ReverseSortComparator c = new ReverseSortComparator();
Arrays.sort(c, numbers);
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
There is no method in |
|||
|
|
|
The first argument must be the array and the second one the
You can find more information in the documentation ! |
|||||||||||
|
|
sort method accept array and comparator
There is error in your code. |
|||
|
|
Arrays.sort(numbers, Collections.reverseOrder());) – mre Jun 12 '11 at 20:07