Set<Integer> A = new HashSet<>(Arrays.asList(1, 2, 3, 4, 5)); Set<Integer> B = new HashSet<>(Arrays.asList(3, 4, 5, 6, 7)); Set<Integer> C = new HashSet<>(A); C.removeAll(B); Set<Integer> D = new HashSet<>(B); D.removeAll(A); C.addAll(D); 如何将最后结果排序并输出
时间: 2023-06-12 16:05:58 浏览: 205
对数组排序后输出
可以将集合转换为列表,对列表进行排序,最后输出排序后的元素。可以使用Java 8中的Stream API来实现:
```
Set<Integer> A = new HashSet<>(Arrays.asList(1, 2, 3, 4, 5));
Set<Integer> B = new HashSet<>(Arrays.asList(3, 4, 5, 6, 7));
Set<Integer> C = new HashSet<>(A);
C.removeAll(B);
Set<Integer> D = new HashSet<>(B);
D.removeAll(A);
C.addAll(D);
List<Integer> sortedList = C.stream().sorted().collect(Collectors.toList());
System.out.println(sortedList);
```
输出结果为:`[1, 2, 6, 7]`。
阅读全文