I know how to sort an array of objects using Arrays.sort() method in following way.
Arrays.sort(array of primitive type);
Arrays.sort(array of primitive type, from, to);
Arrays.sort(array of an object type);
Arrays.sort(array of an object type , from, to);
but i have no idea about following two methods.
Arrays.sort(array of an object type , comparator);
Arrays.sort(array of an object type , from, to, comparator);
Can someone please let me know how to sort array of type object using these methods.I request you to add code or any link that directs to the .java class.I tried to search it but could not find it.
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…