I can not understand the method implementation and the logic of Collections.sort method. Here is the method implementation i found,
public static <T extends Comparable<? super T>> void sort(List<T> list) {
Object[] a = list.toArray();
Arrays.sort(a);
ListIterator<T> i = list.listIterator();
for (int j=0; j<a.length; j++) {
i.next();
i.set((T)a[j]);
}
}
First of all this method return type is void. What is <T extends Comparable<? super T>>
does in the method signature?
What is the purpose of using Array.sort here?
Also once we implement comparable or comparator where is the compare or compareTo method logic that we wrote take in to consider?