java Arrays对数组操作

Arrays.sort(Array)对数组排序
public static void main(String[] args) throws IOException {
		int[] a = {1,3,9,23,54,4,5,2};
		Arrays.sort(a);
		for(int i : a){
			System.out.println(i);
		}
	}

  

posted @ 2017-01-09 11:16  N神3  阅读(418)  评论(0编辑  收藏  举报