1.如果要排序的东西是放在一个数组里面的 1.1如果要排序的东西是基本数据类型,如int int[] c=new int[]{4,5,1,2,3,6,9}; Arrays.sort(c); Arrays.sort(c,1,4); //无法倒序 1.2如果要排序的东西是java自己的类,如Integer Integer[] b=new Integer[]{4,5,1,2,3,6,9}; Arrays.sort(b); Arrays.sort(b,1,4,Collections.reverseOrd…