在Point课堂上,您应该使用通用类型实现Comparable接口,<Point>并使用Collections.sort(java.util包)进行排序List<Point>假设:class Point implements Comparable<Point>{ int compareTo(Point other){ /* your logic */}}List<Point> list = new ArrayList<Point>();/* adding points */Collections.sort(list);