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);
		}
	}
感谢您的阅读,您的支持是我写博客动力。
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);
		}
	}
感谢您的阅读,您的支持是我写博客动力。
