Sort an array in Java

后端 未结 17 975
傲寒
傲寒 2020-11-22 04:53

I\'m trying to make a program that consists of an array of 10 integers which all has a random value, so far so good.

However, now I need to sort them in order from l

17条回答
  •  时光说笑
    2020-11-22 05:32

    For natural order : Arrays.sort(array)

    For reverse Order : Arrays.sort(array, Collections.reverseOrder()); -- > It is a static method in Collections class which will further call an inner class of itself to return a reverse Comparator.

提交回复
热议问题