Collections.sort(intersection)
时间: 2024-08-01 15:00:21 浏览: 44
`Collections.sort(intersection)` 是一个Java方法,用于对名为`intersection`的列表进行排序。这个方法会根据列表中元素的自然顺序进行升序排序。如果列表中的元素实现了`Comparable`接口,那么它们将按照该接口定义的顺序进行排序。如果列表中的元素没有实现`Comparable`接口,那么你需要提供一个`Comparator`对象来确定排序顺序。
示例代码:
```java
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class Main {
public static void main(String[] args) {
List<Integer> intersection = new ArrayList<>();
intersection.add(5);
intersection.add(3);
intersection.add(1);
intersection.add(4);
intersection.add(2);
Collections.sort(intersection);
for (int num : intersection) {
System.out.println(num);
}
}
}
```
输出结果:
```
1
2
3
4
5
```
阅读全文