java8中的排序
Posted takjmh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java8中的排序相关的知识,希望对你有一定的参考价值。
1 //java8中的数组排序 2 public static void main(String[] args) { 3 int[] arr=new int[1024]; 4 Random random = new Random(); 5 for (int i = 0; i < arr.length; i++) { 6 arr[i]=random.nextInt(1024); 7 } 8 9 //排序 10 Arrays.sort(arr); 11 for (int i : arr) { 12 System.out.println(i); 13 } 14 }
以上是关于java8中的排序的主要内容,如果未能解决你的问题,请参考以下文章