使用Array.sort() 这个默认是升序 @Test public void index4(){ int scores[] = new int[]{1,2,3,89,4}; Arrays.sort(scores); for (int i:scores ) { System.out.println(i); } } 1. 2. 3. 4. 5. 6. 7. 8. 9. 如果想降序怎么办呢? 使用:Arrays.sort(scores,Collections.reverseOrder...