How to use Comparator in Java to sort
问题 I learned how to use the comparable but I\'m having difficulty with the Comparator. I am having a error in my code: Exception in thread \"main\" java.lang.ClassCastException: New.People cannot be cast to java.lang.Comparable at java.util.Arrays.mergeSort(Unknown Source) at java.util.Arrays.sort(Unknown Source) at java.util.Collections.sort(Unknown Source) at New.TestPeople.main(TestPeople.java:18) Here is my code: import java.util.Comparator; public class People implements Comparator {