Java写写一个两个集合求交集的
时间: 2023-10-11 12:05:59 浏览: 66
Collections简介-java ppt 课程
代码示例:
```java
import java.util.*;
public class Intersection {
public static void main(String[] args) {
Set<Integer> set1 = new HashSet<>(Arrays.asList(1, 2, 3, 4, 5));
Set<Integer> set2 = new HashSet<>(Arrays.asList(3, 4, 5, 6, 7));
Set<Integer> intersection = new HashSet<>(set1);
intersection.retainAll(set2);
System.out.println("Set 1: " + set1);
System.out.println("Set 2: " + set2);
System.out.println("Intersection: " + intersection);
}
}
```
输出结果:
```
Set 1: [1, 2, 3, 4, 5]
Set 2: [3, 4, 5, 6, 7]
Intersection: [3, 4, 5]
```
说明:
1. 创建两个 Set 对象 set1 和 set2,分别初始化为包含一些整数的 HashSet 对象。
2. 使用 retainAll() 方法获取两个集合的交集,并将结果保存到一个新的 HashSet 对象 intersection 中。
3. 输出集合 set1、set2 和 intersection 的元素。
阅读全文