我在Java中有一个双打列表,我想按降序对ArrayList进行排序。
输入ArrayList如下:
ArrayList
List<Double> testList = new ArrayList(); testList.add(0.5); testList.add(0.2); testList.add(0.9); testList.add(0.1); testList.add(0.1); testList.add(0.1); testList.add(0.54); testList.add(0.71); testList.add(0.71); testList.add(0.71); testList.add(0.92); testList.add(0.12); testList.add(0.65); testList.add(0.34); testList.add(0.62);
输出应该是这样的
0.92 0.9 0.71 0.71 0.71 0.65 0.62 0.54 0.5 0.34 0.2 0.12 0.1 0.1 0.1
Collections.sort(testList); Collections.reverse(testList);
那会做你想要的。请记住要导入Collections!
Collections