Java如何对ArrayList进行排序?

我在Java中有一个双打列表,我想按降序对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

以上是 Java如何对ArrayList进行排序? 的全部内容, 来源链接: utcz.com/qa/435397.html

回到顶部