赞
踩
采用Array类的sort()方法,sort()可以对数组进行排序,有很多重载格式,可以对任何数据类型进行不同数据类型的排序。
import java.util.Arrays; import java.util.Random; public class SortSequence { public static void main(String[] args) { Random rd = new Random(); int[] array = new int[15]; System.out.println("没有使用sort方法前的数组:"); for(int i=0;i<array.length;i++) { array[i]=rd.nextInt(20); System.out.print(" "+array[i]); if((i+1)%5==0) { System.out.println(); } } Arrays.sort(array); System.out.println("\n使用sort方法后的数组:"); for(int i=0;i<array.length;i++) { System.out.print(" "+array[i]); if((i+1)%5==0) { System.out.println(); } } } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。