int [] numbers = {1,2,3,4};
ReverseSortComparator c = new ReverseSortComparator();
Arrays.sort(c, numbers);
int [] numbers = {1,2,3,4}; ReverseSortComparator c = new ReverseSortComparator(); Arrays.sort(c, numbers);
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no method in
Arraysthat takes a primitive array and a Comparator. You would have to have an Integer array, not an int array.